-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (28 loc) · 1.02 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>React-Login-Form</title>
<link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-beta.2/css/bootstrap.css'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container-fluid">
<div class="row text-center">
<div class="col-11 col-sm-6 col-md-5 col-lg-3 mx-auto my-3 p-3 bg-dark rounded">
<div id="root"></div>
</div>
</div>
<div class="row">
<div class="col-10 col-sm-6 mx-auto">
<div class="p-2 mb-3 rounded bg-secondary text-light">
<p>UserID: iservethebrightlord<br>Password: pass123<br> Do try wrong credentials to see all reactions.</p>
</div>
</div>
</div>
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/react/16.2.0/umd/react.development.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.2.0/umd/react-dom.development.js'></script>
<script src="js/index.js"></script>
</body>
</html>