summaryrefslogtreecommitdiff
path: root/templates/inventory/login.html
blob: d407b3fdf33fefb24656bbee0aa117d4431a1b65 (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
49
<!DOCTYPE html>
<html>
<head>
	<title>Login</title>
</head>
<body>
<div style="background: linear-gradient(0deg, #F6F0E1 20%, rgba(200,200,200,0) 100%); height: 100%"; >
  <div>
    <div>
      <p>Login</p>
    </div>
    
    <form method="post">
      {% csrf_token %}
    
      <fieldset>
        {% for field in form %}
        <div>
          <p>
        {{ field.label_tag }}<br>
        {{ field }}
        {% if field.help_text %}
          <small style="color: grey">{{ field.help_text }}</small>
        {% endif %}
        </div>
        
        {% endfor %}
        
      </fieldset>
      <fieldset>
        {{error_message}}
        <button type="submit">Log in</button>

        <div>
      <div>
        <span>New User?</span>
        <a href="/signup">Create Account</a>
      </div>
    </div>
        
      </fieldset>
    </form>
    
  </div>
</div>
</div>

</body>
</html>