-
Notifications
You must be signed in to change notification settings - Fork 0
/
sign.html
executable file
·64 lines (55 loc) · 2.61 KB
/
sign.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
<!DOCTYPE html>
<html>
<head>
<title>sign up</title>
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<!-- Icons: Add this line of code for the icons that you find in materialize to work -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Stylesheets: All of your stylesheets are in this section -->
<link rel="stylesheet" href="./stylesheets/loginsign.css">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.99.0/css/materialize.min.css">
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono" rel="stylesheet">
<!--marks the end of your stylesheets section-->
<!--Scripts: All of your jQuery is in this section -->
<!--This is the jQuery CDN. To find, Google "jQuery CDN and select the website entitle 'code.jquery' " -->
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<!-- The JavaScript that you need from materialize. Can be found on the "Get Started" page on materialize -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.99.0/js/materialize.min.js"></script>
<!-- firebase script -->
<script src="https://www.gstatic.com/firebasejs/4.1.3/firebase.js"></script>
<!--The link to the file that you'll code your jQuery on. This is just like your "style.css" file but for jQuery-->
<script src="./js/main.js"></script>
<!--marks the end of your JavaScript section-->
</head>
<body>
<label><b>First Name</b></label>
<input type="text" placeholder="First Name" name="uname" required>
<label><b>Last Name</b></label>
<input type="text" placeholder="Last Name" name="uname" required>
<label><b>Password</b></label>
<input type="password" placeholder="Create Password" name="psw" required>
<label><b>re type password</b></label>
<input type="password" placeholder="Enter password" name="psw" required>
<label><b>email</b></label>
<input type="text" placeholder="Enter email" name="uname" required>
<div class= "row">
<div class= "col s2 offset-s5">
</div></div>
</div></div>
<div class= "row">
<div class= "col s2 offset-s5">
<a href="login.html"><button id="submitbutton">submit</button></a>
</div>
</div>
<div class= "row">
<div class= "col s2 offset-s5">
<a href="login.html"><button id="submitbutton">cancel</button></a>
</div>
</div>
</body>
</html>