aboutsummaryrefslogtreecommitdiff
path: root/shardweb/lib/templates/identity/self.html.eex
blob: 5e57e020bbb2d272fd19bd3caceb9846f4b1e8f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!-- Page Heading -->
<div class="row">
  <div class="col-lg-12">
    <h1 class="page-header">
      <%= @nick %> <small><%= @pk |> Base.encode16 %></small>
    </h1>
    <ol class="breadcrumb">
      <li>
        <i class="fa fa-users"></i> My identities
      </li>
      <li class="active">
        <i class="fa fa-user"></i> <%= @nick %>
      </li>
    </ol>
  </div>
</div>
<!-- /.row -->

<%= render ShardWeb.LayoutView, "flashes.html", assigns %>


<%= form_for @conn, identity_path(@conn, :update), [class: "form-horizontal"], fn f -> %>
  <div class="form-group">
    <label class="col-sm-2 control-label">Public key:</label>
    <div class="col-sm-10">
      <input type="text" value="<%= @pk |> Base.encode16 %>" class="form-control" disabled />
    </div>
  </div>
  <div class="form-group">
    <%= label :nick, "Nickname:", class: ["col-sm-2 control-label"] %>
    <div class="col-sm-10">
      <%= text_input f, :nick, [class: "form-control", value: @nick] %>
    </div>
  </div>
  <div class="form-group">
    <div class="col-sm-offset-2 col-sm-10">
      <%= submit "Update", [class: "btn btn-default"] %>
    </div>
  </div>
<% end %>

<h4>Other identities</h4>

<ul>
  <%= for pk2 <- identity_list(), pk2 != @pk do %>
    <li>
      <%= form_for @conn, identity_path(@conn, :switch), [class: "form-inline"], fn f -> %>
        <%= hidden_input f, :pk, value: (pk2 |> Base.encode16) %>
        <%= submit "Switch to", [class: "btn btn-xs btn-success"] %>
        <strong><%= get_nick pk2 %></strong>
        <small><%= pk2 |> Base.encode16 %></small>
      <% end %>
    </li>
  <% end %>
</ul>

<%= form_for @conn, identity_path(@conn, :create), [class: "form-inline"], fn _f -> %>
  <%= submit "Create new identity", [class: "btn btn-danger"] %>
<% end %>