-
Notifications
You must be signed in to change notification settings - Fork 1
/
signup.html
93 lines (78 loc) · 4.25 KB
/
signup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="IHS Computer Science Club Website">
<meta name="author" content="Kevin Wang">
<link rel="shortcut icon" href="images/favicon.ico">
<title>IHS Computer Science Club</title>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Nunito:400,600,700" rel="stylesheet">
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- materialdesign icons CSS -->
<link href="css/materialdesignicons.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/style.css" rel="stylesheet">
</head>
<body class="bg-custom">
<section class="">
<div class="container-fluid">
<div class="col-lg-12">
<div class="home-icon">
<a href="index.html" class="text-white"><i class="mdi mdi-home"></i></a>
</div>
</div>
</div>
</section>
<!-- START HOME -->
<section class="bg-custom section">
<div class="login-table">
<div class="login-table-cell">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-4">
<div class="text-center">
<h1 class="text-white">IHS Computer Science Club</h1>
<p class="text-white-50 text-center">Sign Up For a new Account</p>
</div>
<div class="bg-white p-4 mt-4 rounded">
<form class="login-form">
<div class="row">
<div class="col-lg-12 mt-4">
<input type="text" class="form-control" placeholder="First Name" required="">
</div>
<div class="col-lg-12 mt-4">
<input type="email" class="form-control" placeholder="Email" required="">
</div>
<div class="col-lg-12 mt-4">
<input type="password" class="form-control" placeholder="Password" required="">
</div>
<div class="col-lg-12 mt-4">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="customCheck1">
<label class="custom-control-label" for="customCheck1">I accept Terms and Conditions</label>
</div>
</div>
<div class="col-lg-12 mt-4 mb-3">
<button class="btn btn-custom w-100">Sign in</button>
</div>
</div>
</form>
</div>
<div class="text-center mt-3">
<p><small class="text-white mr-2">Don't have an account ?</small> <a href="login.html" class="text-white font-weight-bold text-capitalize">sign in</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- END HOME -->
<!-- js placed at the end of the document so the pages load faster -->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
</body>
</html>