-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsign.html
More file actions
67 lines (67 loc) · 2.22 KB
/
sign.html
File metadata and controls
67 lines (67 loc) · 2.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Random Quote Generator</title>
<link rel="stylesheet" href="log.css" />
<link
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
/>
</head>
<body>
<section id="align">
<div class="login-box">
<h1 class="text-center">Sign Up</h1>
<form action="main.html">
<div class="mb-3">
<label for="email" class="form-label">Email</label>
<div class="input-group">
<span class="input-group-text"
><i class="fas fa-envelope"></i
></span>
<input
type="email"
class="form-control"
id="email"
name="email"
required
/>
</div>
</div>
<div class="mb-3">
<label for="password" class="form-label">Password</label>
<div class="input-group">
<span class="input-group-text"><i class="fas fa-lock"></i></span>
<input
type="password"
class="form-control"
id="password"
name="password"
required
/>
</div>
</div>
<div class="mb-3">
<input type="checkbox" id="remember" name="remember" />
<label for="remember" class="form-check-label">Remember me</label>
</div>
<a href="main.html"
><button type="submit" class="btn btn-primary w-100">
Sign In
</button></a
>
</form>
</div>
</section>
<script src="main.js"></script>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>