forked from iamzcr/dutyByPython
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (29 loc) · 1003 Bytes
/
index.html
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 "layout.html" %}
{% block body %}
<div class="container">
<div class="page-header">
<div class="row">
<div class="col-md-3"></div>
<div class="col-md-6">
<div class="list-group">
<a class="list-group-item active">
<h4 class="list-group-item-heading">Login</h4>
</a>
</div>
<form action="{{ url_for('login') }}" method="post">
<div class="form-group">
<label for="username">Phone</label>
<input type="text" class="form-control" name="phone" id="username" placeholder="username/phone">
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" class="form-control" name="password" id="password" placeholder="password">
</div>
<button type="submit" class="btn btn-primary btn-lg">Login</button>
</form>
</div>
<div class="col-md-3"></div>
</div>
</div>
</div>
{% endblock %}