-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
64 lines (52 loc) · 2.11 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>SIGNUP Page</title>
<script type="text/javascript" src="js/materialize.min.js"></script>
<!-- materialize css & js -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0-beta/css/materialize.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<!-- material icons -->
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
</head>
<body>
<section id="informations" class="section section-informations scrollspy">
<div class="container">
<div class="row">
<div class="col s12 m4 offset-m4">
<div class="card-action teal white-text center">
<h3>Signup Form</h3>
<div class="card-content">
<div class="form-field">
<label class="white-text" for="name">Name</label>
<input type="text" id="name">
</div><br>
<div class="form-field">
<label class="white-text" for="Surname">Surname</label>
<input type="text" id="surname">
</div><br>
<div class="form-field">
<label class="white-text" for="username">Username</label>
<input type="text" id="username">
</div><br>
<div class="form-field">
<label class="white-text" for="password">Password</label>
<input type="password" id="password">
</div><br>
<div class="form-field">
<input type="checkbox" class="filled-in" checked="checked">
<span>Remember me</span>
<!-- <label class="white-text" for="remem">Remember me</label> -->
</div><br>
<div class="form-field">
<li><a class="waves-effect waves-light white black-text btn" href="mainPage.html">Signup</a></li>
</div><br>
</div>
</div>
</div>
</div>
</div>
</section>
</body>
</html>