aboutsummaryrefslogtreecommitdiffstats
path: root/lib/srtgui/templates/login.html
blob: be597992ad18b8941841e4d4df62767ea1e1d858 (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
{% extends "base.html" %}

{% load static %}
{% load projecttags %}
{% load humanize %}

{% block title %} Login Page {% endblock %}
{% block pagecontent %}
  <div class="row">
		<div class="col-md-7" style="padding-left: 50px;">
		  <h1>Login Page</h1>
		</div>
  </div>

	<form method="POST">{% csrf_token %}
		<div class="row" style="padding-left: 100px;">
			<h2>Select User:</h2>
			{% if object.all %}
			  <select name="username" size="10" required>
			  {% for user in object.all %}
				<option>{{user.name}}   ({{user.get_access_text}})</option>
			  {% endfor %}
			  </select>
			{% else %}
			<p>No Users Found</p>
			{% endif%}
		</div>

		<div class="row" style="padding-left: 100px;">
			<h2>Password:</h2>
			<input type="password" class="form-control"  style="width: 150px;" name="password" placeholder="(enter anything)">
		</div>

		<div class="top-air" style="padding-left: 100px;">
		  <input type="submit" id="login-button" class="btn btn-primary btn-lg" value="Submit"/>
		  <a class="btn btn-info btn-lg" href="{% url 'landing' %}">Cancel</a>
		</div>
	</form>

{% endblock %}