-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
87 lines (68 loc) · 2.49 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Zebra</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css">
</head>
<body>
<p></p>
<style type="text/css">
body { background-color:white; color:black; }
p { font-family: Tahoma, Verdana; font-size: 19px; }
</style>
<div align="center">
<img src="../static/icon.png" width="100" height="100" alt="CenterPic" border="0" align="center"/>
<p></p>
<div class="ui container">
<!-- HEADER -->
<div class="ui card">
<div class="content">
<div class="header">
Create your Zebra Account
</div>
</div>
<form action="signup.php" method="post">
<div class="content">
<div class="ui form">
<div class="required field">
<input type="text" placeholder="Full Name" id="name" name="name">
</div>
</div>
<p></p>
<div class="ui form success">
<div class="field">
<input type="text" placeholder="e-mail" id="email" name="email">
</div>
</div>
<p></p>
<div class="ui form success">
<div class="field">
<input type="date" id="b_date" name="birth_date">
</div>
</div>
<p></p>
<div class="ui form success">
<div class="field">
<input type="number" placeholder="506..." min="0" max="9999999999" id="phonenum" name="phonenum">
</div>
</div>
<p></p>
<div class="ui form success">
<div class="field">
<input type="password" placeholder="Password" id="password" name="password">
</div>
</div>
</div>
<div class="content extra">
<input class="ui large positive button" type="submit" name="userSignUp" value="Create User Account!">
<p></p>
<input class="ui large negative button" type="submit" name="developerSignUp" value="Create Developer Account!">
</div>
</form>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.js"></script>
</body>
</html>