-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtest.php
56 lines (38 loc) · 1.71 KB
/
test.php
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
<!DOCTYPE html>
<html>
<head>
<script src="js/jquery.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
</head>
<body>
<div class="hide1" id="third-block">
<form class="form-group" action="/actions.php" id="signup_form" method="POST">
<div class="input-group">
<span class="input-group-addon"><i class="fa fa-user"></i></span>
<input type="text" class="form-control form-height40 bord-0" name="fname" placeholder="First Name" required/>
</div>
<div class="input-group mg-top20">
<span class="input-group-addon"><i class="fa fa-user"></i></span>
<input type="text" class="form-control form-height40 bord-0" name="lname" placeholder="Last Name" required/>
</div>
<div class="input-group mg-top20">
<span class="input-group-addon"><i class="fa fa-at"></i></span>
<input type="email" class="form-control form-height40 bord-0" name="email" placeholder="Email Address" required/>
</div>
<div class="input-group mg-top20">
<span class="input-group-addon"><i class="fa fa-lock"></i></span>
<input type="password" class="form-control form-height40 bord-0 pwd" minlength="6" name="pwd" id="pwd" placeholder="Password" required/>
</div>
<div class="input-group mg-top20">
<span class="input-group-addon"><i class="fa fa-phone"></i></span>
<input type="text" maxlength="15" class="form-control form-height40 bord-0 phone" name="contact" placeholder="Mobile" required/>
</div>
<div class="text-center mg-top10">
<button type="submit" name="signup" id="signup" class="btn-4">Signup</button>
<button type="button" class="btn-back">Back</button>
</div>
</form>
</div>
</body>
<!--<script src="test.js"></script>-->
</html>