-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCreateAccount.html
85 lines (66 loc) · 3.29 KB
/
CreateAccount.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
<!--Developed by Adam Schilperoort https://www.adamschilperoort.com -->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Create Account</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=0">
<meta name="description" content="">
<!-- <meta name="google-site-verification" content="02d0b66dbb181201"> -->
<!-- Bootstrap Css -->
<link href="bootstrap-assets/css/bootstrap.min.css" rel="stylesheet">
<!-- Style -->
<link href="plugins/owl-carousel/owl.carousel.css" rel="stylesheet">
<link href="plugins/owl-carousel/owl.theme.css" rel="stylesheet">
<link href="plugins/owl-carousel/owl.transitions.css" rel="stylesheet">
<link href="plugins/Lightbox/dist/css/lightbox.css" rel="stylesheet">
<link href="plugins/Icons/et-line-font/style.css" rel="stylesheet">
<link href="plugins/animate.css/animate.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<!-- Icons Font -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
</head>
<body width = "device-width">
<!-- Preloader
============================================= -->
<div class="preloader"><i class="fa fa-circle-o-notch fa-spin fa-2x"></i></div>
<!-- Header
============================================= -->
<!-- Welcome
============================================= -->
<section id="welcome">
<div class="container">
<br></br> <br></br>
<h2><span>Create Account:</span></h2>
<hr class="sep">
<form class ="CreateAccount" action="ValidateEmail.html">
<br></br>
<h6>Username: <input type="text" placeholder="username" name="search2"> </h6>
<br></br>
<h6>Password: <input type="password" placeholder="password" name="search2"> </h6>
<br></br>
<h6>Email Address: <input type="email" placeholder="email" name="search2"> </h6>
<br></br>
<a href="ValidateEmail.html" class="button">Submit</a>
</form>
</div>
</section>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="bootstrap-assets/js/bootstrap.min.js"></script>
<script src="js/custom.js"></script>
<!-- JS PLUGINS -->
<script src="plugins/owl-carousel/owl.carousel.min.js"></script>
<script src="js/jquery.easing.min.js"></script>
<script src="plugins/waypoints/jquery.waypoints.min.js"></script>
<script src="plugins/countTo/jquery.countTo.js"></script>
<script src="plugins/inview/jquery.inview.min.js"></script>
<script src="plugins/Lightbox/dist/js/lightbox.min.js"></script>
<script src="plugins/WOW/dist/wow.min.js"></script>
<!-- GOOGLE MAP -->
<!-- AIzaSyDbi84W3b2-Gqi6SI1bRLFWzsvQfvXGIIQ GOOGLE API KEY -->
<script src="https://maps.googleapis.com/maps/api/js"></script>
</body>
</html>