File size: 960 Bytes
6bf9e00
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
{% extends "auth.html" %}

{% block title %}Login | Traffic Sign Classifier{% endblock %}
{% block terminal_title %}traffic_login.exe{% endblock %}
{% block auth_heading %}Secure Login{% endblock %}
{% block auth_subtitle %}[ CLASSIFIER_ACCESS ]{% endblock %}

{% block auth_form %}
<form class="neon-form" method="post" action="{{ url_for('login') }}">
  <label class="cyber-field">
    <span>Email address</span>
    <input type="email" name="email" required autocomplete="email" placeholder="you@example.com">
  </label>

  <label class="cyber-field">
    <span>Password</span>
    <input type="password" name="password" required autocomplete="current-password" placeholder="Enter password">
  </label>

  <button type="submit" class="neon-button">
    <span>[ INITIALIZE_CONNECTION ]</span>
  </button>
</form>

<div class="matrix-signup">
  <span>[ NEW_USER_DETECTED ]</span>
  <a href="{{ url_for('register') }}">CREATE_PROFILE</a>
</div>
{% endblock %}