forked from hngi/mini-classroom-TEAM-PRIAPUS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogout.html
40 lines (34 loc) · 1.63 KB
/
logout.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title> SignIn Form</title>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="logout.css">
</head>
<body>
<div class="container-full" id="login-box">
<div class="left-box">
<div class="reg">
<h3>You have successfully signed out!</h3>
</div>
</div>
<div class="right-box align-items-center">
<div class="login-container d-flex align-items-center justify-content-center">
<form class="login-form text center">
<h1 class="mb-5 "> Go back to class </h1>
<div class="form-group">
<input type="text" class="form-control rounded-pill form-control-lg" placeholder="Username">
</div>
<div class="form-group">
<input type="password" class="form-control rounded-pill form-control-lg" placeholder="password">
</div>
<button type="submit" class="btn mt-5 mt-55 btn-primary rounded-pill btn-control-lg">Sign In</button>
</form>
</div>
</div>
</body>
</html