-
Notifications
You must be signed in to change notification settings - Fork 1
/
signup.html
67 lines (59 loc) · 2.47 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
<!doctype html>
<html lang="en">
<head>
<title>Higgles – Top Service with ease</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Font -->
<link rel="dns-prefetch" href="//fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css?family=Rubik:300,400,500" rel="stylesheet">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Themify Icons -->
<link rel="stylesheet" href="css/themify-icons.css">
<!-- Owl carousel -->
<link rel="stylesheet" href="css/owl.carousel.min.css">
<!-- Main css -->
<link href="css/style.css" rel="stylesheet">
<!-- Icon -->
<link href="images/logo.png" rel="icon" />
</head>
<body data-spy="scroll" data-target="#navbar" data-offset="30">
<header class="bg-gradient header2" id="home">
<br/>
<img src="images/logo.png" class="img-fluid" alt="logo" width="90" height="90">
<div class="container mt-5">
<h1>SIGN UP AT HIGGLES</h1>
</div>
<form class="form-signin">
<div class="form-group">
<label for="exampleInputEmail1">Email Address</label>
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter email address">
</div>
<div class="form-group">
<label for="exampleInputPassword1">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
</div>
<button type="submit" class="btn btn-primary margin_bottom">Sign Up</button>
</form>
</header>
<footer class="my-5 text-center">
<!-- Copyright removal is not prohibited! -->
<p class="mb-2"><small>COPYRIGHT © 2020. ALL RIGHTS RESERVED.</p>
<p class="mb-2">Higgles – Top Service with ease<small></p>
<small>
<a href="#" class="m-2">TERMS</a>
<a href="#" class="m-2">| PRIVACY</a>
<a href="#" class="m-2">| CONTACT</a>
</small>
</footer>
<!-- jQuery and Bootstrap -->
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
<!-- Plugins JS -->
<script src="js/owl.carousel.min.js"></script>
<!-- Custom JS -->
<script src="js/script.js"></script>
</body>
</html>