aboutsummaryrefslogblamecommitdiff
path: root/templates/home.html
blob: 40a0e5c5ca8221e9a3f1056da3a71b86ffd73caf (plain) (tree)





























                                                                   
{{define "title"}}{{end}}

{{define "body"}}
<div class="alert alert-info">
    Logged in as <strong>{{ .Login.MxId }}</strong>
</div>
<div class="d-flex">
  <a class="ml-auto btn btn-sm btn-dark" href="/logout">Log out</a>
</div>

<table class="table mt-4">
  <thead>
    <tr>
      <th>Account name</th>
      <th>Protocol</th>
      <th></th>
    </tr>
  </thead>
  <tbody>
    {{range $name, $acc := .Accounts}}
      <tr>
        <td>{{ $name }}</td>
        <td>{{ $acc.Protocol }}</td>
        <td>Modifier etc</td>
      </tr>
    {{end}}
  </tbody>
</table>

{{end}}