-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.php
42 lines (42 loc) · 1.39 KB
/
signup.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
<!DOCTYPE html>
<html>
<head>
<title>PHP Simple Chat System using AJAX</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/style.css">
<style>
#signup_form{
width:350px;
height:430px;
position:relative;
top:50px;
margin: auto;
padding: auto;
}
</style>
</head>
<body>
<div class="container">
<div id="signup_form" class="well">
<h2><center><span class="glyphicon glyphicon-user"></span> Sign Up</center></h2>
<hr>
<form method="POST" action="register.php">
Name: <input type="text" name="name" class="form-control" required>
<div style="height: 10px;"></div>
Username: <input type="text" name="username" class="form-control" required>
<div style="height: 10px;"></div>
Password: <input type="password" name="password" class="form-control" required>
<div style="height: 10px;"></div>
<button type="submit" class="btn btn-primary"><span class="glyphicon glyphicon-save"></span> Sign Up</button> <a href="index.php"> Back to Login</a>
</form>
<div style="height: 15px;"></div>
<div style="color: red; font-size: 15px;">
<center>
</center>
</div>
</div>
</div>
</body>
</html>