-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
executable file
·120 lines (69 loc) · 2.65 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<html>
<head>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<!-- Personal StyleSheet -->
<link rel="stylesheet" href="login.css">
</head>
<body>
<!-- NAVBAR -->
<nav style="background-color:#8FDAF0;"class="navbar navbar-light bg-faded">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="Home.html">Place4Space</a>
</div>
<ul class="nav navbar-nav">
<li><a href="About.html">About</a></li>
<li class="active"><a href="login.html">Login</a></li>
</ul>
</div>
</nav>
<!-- /NAVBAR -->
<!-- ROW1 -->
<div style="padding:75px;" class="row">
<div class="col-sm-4"></div>
<div class="col-sm-4">
<center>
<div style="padding:25px;background-color:#8FDAF0;">
<h1>Sign Up</h1>
</div>
</center>
</div>
<div class="col-sm-4"></div>
</div>
<!-- /ROW1 -->
<!-- ROW2 -->
<div class="row">
<div class="col-sm-4"></div>
<div style="" class="col-sm-4">
<center>
<div style="padding:50px;background-color:#8FDAF0;" class="panel panel-primary">
<form method='post' action='signup.php'>
<button style="background-color: #00bfff;font-size:25px;width:200px" class="button2">Create</button>
<br>
<br>
<input style="width:165px;padding:10px;height:10px;" id='id' name='id' placeholder='USERNAME'>
<br>
<input type='password' style="width:165px;padding:10px;height:10px;" id='pass' name='pass' placeholder='PASSWORD'>
<br>
<input type='password' style="width:165px;padding:10px;height:10px;" id='pass2' name='pass2' placeholder='RETYPE PASSWORD'>
<br>
<input style="width:165px;padding:10px;height:10px;" id='first' name='first' placeholder='FIRSTNAME'>
<br>
<input style="width:165px;padding:10px;height:10px;" id='last' name='last' placeholder='LASTNAME'>
<br>
<input style="width:165px;padding:10px;height:10px;" id='email' name='email' placeholder='EMAIL'>
<br>
</form>
</div>
</center>
</div>
<div class="col-sm-4"></div>
</div>
<!-- /ROW2 -->
</body>
</html>