-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.php
27 lines (25 loc) · 1007 Bytes
/
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
<?php
include 'header.php';
?>
<section class="main-container">
<div class="main-wrapper">
<h2>Sign Up</h2>
<form class="signup-form" action="includes/signup.inc.php" method="POST">
<input type="text" name="Fname" placeholder="firstname">
<input type="text" name="Lname" placeholder="lastname">
<input type="text" name="Mail" placeholder="email">
<input type="text" name="Username" placeholder="username">
<input type="number" name="Nid" placeholder="Nid">
<input type="password" name="Password" placeholder="password">
<input type="number" name="Age" placeholder="Age">
<input type="text" name="Bankacc" placeholder="Bank Account Number">
<input type="text" name="Address" placeholder="Address">
<input type="tel" name="Phone" placeholder="Phone Number">
<input type="text" name="Sex" placeholder="Male or Female">
<button type="submit" name="submit">Signup</button>
</form>
</div>
</section>
<?php
include_once 'footer.php';
?>