forked from yogeshojha/rengine
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html.1
60 lines (56 loc) · 4.19 KB
/
index.html.1
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
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, shrink-to-fit=no">
<title>Login</title>
<link href="https://fonts.googleapis.com/css?family=Nunito:400,600,700" rel="stylesheet">
<link href="/staticfiles/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link href="/staticfiles/assets/css/plugins.css" rel="stylesheet" type="text/css" />
<link href="/staticfiles/assets/css/authentication/form-2.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" type="text/css" href="/staticfiles/assets/css/forms/theme-checkbox-radio.css">
<link rel="stylesheet" type="text/css" href="/staticfiles/assets/css/forms/switches.css">
</head>
<body class="form" style="background: #212121">
<div class="form-container outer">
<div class="form-form">
<div class="form-form-wrap">
<div class="form-container">
<div class="form-content">
<img src="/staticfiles/img/logo.png" class="navbar-logo" alt="logo">
<h5 class="">Login to reNgine.</h5>
<form class="text-left" method="POST">
<input type="hidden" name="csrfmiddlewaretoken" value="uvt2qL9oygwmh5lX3flHxlmBRbTZ9BCZ7fGQtjVQVRZdAtlNa6PXiuv1W8T1aLg8">
<div class="form">
<div id="username-field" class="field-wrapper input">
<label for="username">USERNAME</label>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-user"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path><circle cx="12" cy="7" r="4"></circle></svg>
<input id="username" name="username" type="text" class="form-control " placeholder="username" required>
</div>
<div id="password-field" class="field-wrapper input mb-2">
<div class="d-flex justify-content-between">
<label for="password">PASSWORD</label>
</div>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-lock"><rect x="3" y="11" width="18" height="11" rx="2" ry="2"></rect><path d="M7 11V7a5 5 0 0 1 10 0v4"></path></svg>
<input id="password" name="password" type="password" class="form-control " placeholder="Password" required>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" id="toggle-password" class="feather feather-eye"><path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"></path><circle cx="12" cy="12" r="3"></circle></svg>
</div>
<div class="d-sm-flex justify-content-between">
<div class="field-wrapper">
<button type="submit" class="btn btn-outline-primary" value="">Log In</button>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<script src="/staticfiles/assets/js/libs/jquery-3.1.1.min.js"></script>
<script src="/staticfiles/bootstrap/js/popper.min.js"></script>
<script src="/staticfiles/bootstrap/js/bootstrap.min.js"></script>
<script src="/staticfiles/assets/js/authentication/form-2.js"></script>
</body>
</html>