]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/templates/settings/oauth.tpl
Update wall_thread.tpl
[friendica.git] / view / theme / frio / templates / settings / oauth.tpl
1 <div class="generic-page-wrapper">
2         {{* include the title template for the settings title *}}
3         {{include file="section_title.tpl" title=$title}}
4         <form action="settings/oauth" method="post" autocomplete="off">
5                 <input type="hidden" name="form_security_token" value="{{$form_security_token}}">
6                 <table id='application-block' class='table table-condensed table-striped'>
7                         <thead>
8                                 <tr>
9                                         <th>{{$name}}</th>
10                                         <th>{{$website}}</th>
11                                         <th>{{$created_at}}</th>
12                                         <th></th>
13                                 </tr>
14                         </thead>
15                         <tbody>
16                                 {{foreach $apps as $app}}
17                                 <tr>
18                                         <td>{{$app.name}}</td>
19                                         <td>{{$app.website}}</td>
20                                         <td>{{$app.created_at}}</td>
21                                         <td>
22                                                 <button type="submit" class="btn" title="{{$delete}}" name="delete" value="{{$app.id}}">
23                                                         <i class="fa fa-trash" aria-hidden="true"></i>
24                                                 </button>
25                                         </td>
26                                 </tr>
27                                 {{/foreach}}
28                         </tbody>
29                 </table>
30         </form>
31 </div>