-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
58 lines (37 loc) · 1.72 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Registration</title>
<link rel =" stylesheet" href="f.css">
</head>
<body >
<?php
// put your code here
?>
<h3 style="text-align: center;border: 1px solid black;background-color:blanchedalmond;border-radius: 2px;height: 50px;">Registration Form</h3>
<div class="inputbox">
<form action="HelperofDatabase.php" method="post" >
<label>Username</label><br>
<input type ="text" name="usernamefromform" required="" ><br>
<label>Address</label><br>
<input type="text" name="useraddressfromform" required=""><br>
<label>Mobile No</label><br>
<input type ="text" name="usermobilefromform" required=""><br>
<label>Password</label><br>
<input type="password" name="userpasswordfromform" required=""><br>
<br><br>
<input type="Submit" name="SubmitButton" value="Registration" style="text-align: center">
<h5>Already Registered? <a href="loginPage.php">Login</a></h5>
</form>
</div>
<div class="na">
<nav>
<ul >
<li><a href="projecket.html" style="color: white">HOME</a></li>
<li><a href="loginPage.php" style="color: white">LOGIN </a></li>
</ul>
</nav>
</div>
</body>
</html>