forked from CodeMacrocosm/Pull-a-Thon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sighup.html
118 lines (88 loc) · 4.25 KB
/
sighup.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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Sign Up</title>
<link href="https://fonts.googleapis.com/css2?family=Train+One&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,700;1,300;1,400&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.3/css/all.css" integrity="sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk" crossorigin="anonymous">
<link rel="stylesheet" href="main.css">
</head>
<body class="login_body">
<h1 class="login_header">
ABC High School<br>
</h1>
<div class="card login_card">
<div class="card-header">
<h2 class="signup_card">Make Your Account</h2>
</div>
<div class="card-body row">
<div class="col-lg-7 first_col">
<form class="" action="index.html" method="post">
<div class="row">
<div class="col-lg-6">
<div class="form-group">
<label class="login_label" for="">First Name</label>
<input type="text" class="form-control login_input">
</div>
</div>
<div class="col-lg-6">
<div class="form-group">
<label class="login_label" for="">Last Name</label>
<input type="text" class="form-control login_input">
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<div class="form-group">
<label class="login_label" for="">User Name</label>
<input type="text" class="form-control login_input">
</div>
</div>
<div class="col-lg-6">
<div class="form-group">
<div class="form-group">
<label class="login_label" for="">Phone Number</label>
<input type="tel" class="form-control login_input">
</div>
</div>
</div>
</div>
<div class="form-group">
<labe class="login_label" l for="">Email Address</label>
<input type="email" class="form-control login_input" placeholder="Enter Your Email">
</div>
<div class="form-group">
<labe class="login_label" l for="">Password</label>
<input type="password" class="form-control login_input ">
</div>
<div class="form-group">
<labe class="login_label" l for="">Confirm Password</label>
<input type="password" class="form-control login_input ">
</div>
<div class="login_submit">
<button type="submit" class="btn btn-lg btn-success login_button" name="button">Sign Up</button>
</div>
</form><br>
</div>
<div class="col-lg-5">
<h5 class="or">Or</h5>
<div class="card google_card">
<div class="card-body">
<i class="fab fa-google"></i> Signup With Google
</div>
</div>
<div class="login_submit">
<p>Already Have An Account? <a href="login.html">Log In</a></p>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
</body>
</html>