-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.php
More file actions
123 lines (115 loc) · 3.72 KB
/
signup.php
File metadata and controls
123 lines (115 loc) · 3.72 KB
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
121
122
123
<style>
.button {
border-radius: 4px;
background-color: #2764c6;
border: none;
color: #FFFFFF;
text-align: center;
font-size: 28px;
padding: 20px;
width: 200px;
transition: all 0.5s;
cursor: pointer;
margin: 5px;
}
.button span {
cursor: pointer;
display: inline-block;
position: relative;
transition: 0.5s;
}
.button span:after {
content: '\00bb';
position: absolute;
opacity: 0;
top: 0;
right: -20px;
transition: 0.5s;
}
.button:hover span {
padding-right: 25px;
}
.button:hover span:after {
opacity: 1;
right: 0;
}
</style>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<div>
<div>
<div align="center"><button type="button" class="button" data-toggle="modal" data-target="#myModal"><span> Sign Up </span></button></div>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<div class="modal fade" id="myModal" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h2 class="modal-title" align="center">SignUp</h2>
<p align="center"><sup><i>This form is for new member of Watchout. Please, fill your information with correctly!</i></sup></p>
</div>
<div class="modal-body">
<form action="config/tambahuser2.php" method="POST" class="form-horizontal">
<div class="form-group">
<label class="control-label col-sm-2" name="namalengkap" for="namalengkap">Name:</label>
<div class="col-sm-10">
<input type="namalengkap" name="namalengkap" class="form-control" placeholder="Enter your full name" required>
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-2" name="username" for="username">Username:</label>
<div class="col-sm-10">
<input type="username" name="username" class="form-control" placeholder="Enter your username" required>
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-2" name="password" for="password">Password:</label>
<div class="col-sm-10">
<input type="password" name="password" class="form-control" placeholder="Enter your password" required>
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-2" name="alamat" for="alamat">Address:</label>
<div class="col-sm-10">
<input type="alamat" name="alamat" class="form-control" placeholder="Enter your address" required>
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-2" name="email" for="email">Email:</label>
<div class="col-sm-10">
<input type="email" name="email" class="form-control" placeholder="Enter your email" required>
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-2" name="no_telepon" for="no_telepon">Telephon:</label>
<div class="col-sm-10">
<input type="no_telepon" name="no_telepon" class="form-control" placeholder="Enter your telephon number" required>
</div>
</div>
</div>
<div class="modal-footer">
<button type="submit" class="btn btn-success">Register</button>
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>