-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.php
62 lines (56 loc) · 1.62 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Personal Information Manager</title>
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="index.css">
<link rel="stylesheet" type="text/css" href="common.css">
<link rel="stylesheet" type="text/css" href="signup.css">
<script type="text/javascript">
</script>
</head>
<body>
<?php include("sitelayout.php"); ?>
<div class="span8" id="main-content">
<br/>
<form class="form-horizontal" method="post" action="dosignup.php" id="loginform">
<div class="control-group">
<label for="name" class="control-label">Enter your name : </label>
<div class="controls">
<input type="text" name="name"/>
</div>
</div>
<div class="control-group">
<label for="username" class="control-label">Choose an username : </label>
<div class="controls">
<input type="text" name="username"/>
</div>
</div>
<div class="control-group">
<label for="password" class="control-label">Choose a password : </label>
<div class="controls">
<input type="password" name="password"/>
</div>
</div>
<div class="control-group">
<label for="mailid" class="control-label">Enter your mail-id : </label>
<div class="controls">
<input type="text" name="mailid"/>
</div>
</div>
<div class="control-group">
<div class="controls">
<button type="submit" class="btn btn-success">Signup</button>
<a href='login.php' class='btn btn-danger'>Login</a>
</div>
</div>
</form>
</div><br/>
<?php include('sitelayout2.php'); include('footer.php'); ?>
<?php
?>
</body>
</html>