]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/templates/settings/oauth.tpl
Fix review points
[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                                 </tr>
13                         </thead>
14                         <tbody>
15                                 {{foreach $apps as $app}}
16                                 <tr>
17                                         <td>{{$app.name}}</td>
18                                         <td>{{$app.website}}</td>
19                                         <td>{{$app.created_at}}</td>
20                                         <td><a href="{{$baseurl}}/settings/oauth/delete/{{$app.id}}?t={{$form_security_token}}" class="btn" title="{{$delete}}"><i class="fa fa-trash" aria-hidden="true"></i></a></td>
21                                 </tr>
22                                 {{/foreach}}
23                         </tbody>
24                 </table>
25         </form>
26 </div>