-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauthorization.html
More file actions
77 lines (77 loc) · 5.59 KB
/
authorization.html
File metadata and controls
77 lines (77 loc) · 5.59 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<title>Bootstrap 4 Project</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/libs/bootstrap.css" type="text/css">
<link rel="stylesheet" href="css/styles.css" type="text/css">
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.3/umd/popper.min.js" integrity="sha384-vFJXuSJphROIrBnz7yo7oB41mKfc8JzQZiCq4NCceLEaO4IHwicKwpJf9c9IpFgh" crossorigin="anonymous"></script>
<script src="js/libs/bootstrap.js" type="text/javascript"></script>
</head>
<body>
<div class="container-fluid indent">
<div class="container">
<h2 class="text-center">Authorization</h2>
<div class="row text-center justify-content-center">
<div class="col-xs-12">
<button class="btn btn-info my-2 my-sn-0" data-toggle="modal" data-target="#exampleModal" >Register</button>
<div class="modal fade" id="exampleModal" aria-hidden="true">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Modal Title</h5>
<button class="close" type="button" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="container-fluid">
<form>
<div class="form-group">
<label for="exampleInputEmail">Email Address</label>
<input type="email" class="form-control" id="exampleInputEmail" aria-describedby="emailHelp" placeholder="[email protected]" required>
<small id="emailHelp" class="form-text text-muted">Enter your email</small>
</div>
<div class="form-group">
<label for="exampleInputEmail">Confirm Email Address</label>
<input type="email" class="form-control" id="exampleInputEmail" placeholder="[email protected]" required>
</div>
<div class="form-group">
<label for="exampleInputPassword">Password</label>
<input type="password" class="form-control" id="exampleInputPassword" placeholder="***************" required>
<small id="passwordHelp" class="form-text text-muted">Your Password should be at least 8-10 symbols</small>
</div>
<div class="form-group">
<label for="exampleInputEmail">Confirm Password</label>
<input type="password" class="form-control" id="exampleInputPassword" placeholder="***************" required>
</div>
<div class="form-check">
<label class="form-check-label">
<input type="checkbox" class="check-input">
Remember me
</label>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container indent">
<div class="row text-center justify-content-center">
<div class="col-xs-12">
<button class="btn btn-success">
<a href="index.html" class="previous-page">Previous Page</a>
</button>
</div>
</div>
</div>
</body>
</html>