-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsign_up.php
More file actions
57 lines (49 loc) · 1.74 KB
/
sign_up.php
File metadata and controls
57 lines (49 loc) · 1.74 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Ticket</title>
<!-- Tell the browser to be responsive to screen width -->
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<!-- Bootstrap 3.3.6 -->
<link rel="stylesheet" href="user/css/bootstrap.min.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="user/css/font-awesome.min.css">
<link rel="stylesheet" href="user/css/sign_up.css" >
</head>
<body>
<div class=" container sign_up">
<div class="row">
<div class="col-md-12 text-center">
<h3 class="text-primary">Sign-up</h3>
</div>
<div class="col-md-5 col-md-offset-3 col-xs-5 col-xs-offset-3">
<form action="" method="post">
<div class="form-group">
<label for="user_name">User Name</label>
<input required type="text" placeholder="your Name" name="user_name" id="user_name" class="form-control">
</div>
<div class="form-group">
<label for="password">Password</label>
<input required type="password" placeholder="your password" id="password" name="password" class="form-control">
</div>
<div class="form-group">
<label for="confirm_password">confirm password</label>
<input required type="password" placeholder="Retype your password" id="confirm_password" class="form-control">
</div>
<input type="submit" class="btn btn-primary form-control" value="Let's Go">
</form>
</div>
</div>
</div>
<!-- jQuery 2.2.3 -->
<script src="user/js/jquery-2.2.3.min.js"></script>
<!-- Bootstrap 3.3.6 -->
<script src="user/js/bootstrap.min.js"></script>
<!--main js-->
<script src="user/js/main.js"></script>
<script>
</script>
</body>
</html>