aboutsummaryrefslogtreecommitdiff
path: root/gn_auth/templates/oauth2/authorise-user.html
blob: 747446417fb69fa7722b95fec658da75edfb3712 (plain)
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
{%extends "base.html"%}

{%block title%}Authorise User{%endblock%}

{%block pagetitle%}Authenticate to the API Server{%endblock%}

{%block content%}
{{flash_messages()}}
<legend style="margin-top: 20px;">User Credentials</legend>
<div class="container" style="min-width: 1250px;">
<form method="POST" class="form-horizontal" action="{{url_for(
                            'oauth2.auth.authorise',
                            response_type=response_type,
                            client_id=client.client_id,
                            redirect_uri=redirect_uri)}}">
  <input type="hidden" name="response_type" value="{{response_type}}" />
  <input type="hidden" name="redirect_uri" value="{{redirect_uri}}" />
  <input type="hidden" name="scope" value="{{scope | join(' ')}}" />
  <input type="hidden" name="client_id" value="{{client.client_id}}" />
  <div class="form-group">
    <label for="user:email" class="form-label col-xs-1">Email</label>
    <input type="email" name="user:email" id="user:email" required="required"
	   class="controls col-xs-3" size="50"/>
  </div>

  <div class="form-group">
    <label for="user:password" class="form-label col-xs-1">Password</label>
    <input type="password" name="user:password" id="user:password"
	   required="required" class="controls col-xs-3" size="50"/>
  </div>

  <div class="form-group">
    <label for="authorise" class="form-label col-xs-1"></label>
    <div class="controls col-xs-3">
      <input type="submit" value="Log in" class="btn btn-primary col-2" style="margin-left: -15px;"/>
      {%if display_forgot_password%}
      <a href="{{url_for('oauth2.users.forgot_password',
              client_id=client.client_id,
              redirect_uri=redirect_uri,
              response_type=response_type)}}"
        title="Click here to change your password."
        class="form-text text-danger col-2">Forgot Password</a>
      {%endif%}
    </div>
  </div>
</form>
</div>
{%endblock%}