1 |
<!DOCTYPE html> |
2 |
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> |
3 |
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--> |
4 |
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> |
5 |
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]--> |
6 |
<head> |
7 |
<meta charset="utf-8"> |
8 |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> |
9 |
<title> Mouchak | Login</title> |
10 |
<meta name="description" content=""> |
11 |
<meta name="viewport" content="width=device-width"> |
12 |
|
13 |
<!-- Place favicon.ico in the root directory --> |
14 |
|
15 |
<link rel="stylesheet" href="{{url_for('static', filename='css/normalize.css')}}"> |
16 |
<link rel="stylesheet" href="{{url_for('static', filename='css/bootstrap.min.css')}}"> |
17 |
<style type="text/css"> |
18 |
.form-wrapper { |
19 |
height: 300px; |
20 |
width: 500px; |
21 |
margin: 100px auto; |
22 |
padding: 30px; |
23 |
} |
24 |
</style> |
25 |
</head> |
26 |
<body> |
27 |
<!--[if lt IE 7]> |
28 |
<p class="chromeframe">You are using an outdated browser. <a href="http://browsehappy.com/">Upgrade your browser today</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to better experience this site.</p> |
29 |
<![endif]--> |
30 |
|
31 |
<div class="container" id="container"> |
32 |
<div class="form-wrapper well"> |
33 |
{% if error %} |
34 |
<div class="alert alert-error"><b>Error:</b> {{ error }} </div> |
35 |
{% endif %} |
36 |
<h3> Mouchak Login </h3> |
37 |
<p class="lead"> Please enter admin credentials to login</p> |
38 |
<form class="form-horizontal" action="{{ url_for('login') }}" method="POST"> |
39 |
<div class="control-group"> |
40 |
<label class="control-label" for="inputUsername">Username</label> |
41 |
<div class="controls"> |
42 |
<input type="text" id="inputUsername" name="username" placeholder="Username"> |
43 |
</div> |
44 |
</div> |
45 |
<div class="control-group"> |
46 |
<label class="control-label" for="inputPassword">Password</label> |
47 |
<div class="controls"> |
48 |
<input type="password" id="inputPassword" name="password" placeholder="Password"> |
49 |
</div> |
50 |
</div> |
51 |
<div class="control-group"> |
52 |
<div class="controls"> |
53 |
<!--label class="checkbox"> |
54 |
<input type="checkbox"> Remember me |
55 |
</label--> |
56 |
<button type="submit" class="btn btn-primary">Login</button> |
57 |
</div> |
58 |
</div> |
59 |
<div class="clearfix"></div> |
60 |
</form> |
61 |
</div> |
62 |
</div> |
63 |
</body> |
64 |
</html> |