1 <%= if get_flash(@conn, :info) do %>
2 <p class="alert alert-info" role="alert"><%= get_flash(@conn, :info) %></p>
4 <%= if get_flash(@conn, :error) do %>
5 <p class="alert alert-danger" role="alert"><%= get_flash(@conn, :error) %></p>
8 <h2>Registration Details</h2>
10 <p>If you'd like to register a new account, please provide the details below.</p>
12 <%= form_for @conn, o_auth_path(@conn, :register), [], fn f -> %>
15 <%= label f, :nickname, "Nickname" %>
16 <%= text_input f, :nickname, value: @nickname %>
19 <%= label f, :email, "Email" %>
20 <%= text_input f, :email, value: @email %>
23 <%= submit "Proceed as new user", name: "op", value: "register" %>
25 <p>Alternatively, sign in to connect to existing account.</p>
28 <%= label f, :auth_name, "Name or email" %>
29 <%= text_input f, :auth_name %>
32 <%= label f, :password, "Password" %>
33 <%= password_input f, :password %>
36 <%= submit "Proceed as existing user", name: "op", value: "connect" %>
38 <%= hidden_input f, :client_id, value: @client_id %>
39 <%= hidden_input f, :redirect_uri, value: @redirect_uri %>
40 <%= hidden_input f, :scope, value: Enum.join(@scopes, " ") %>
41 <%= hidden_input f, :state, value: @state %>