-
Notifications
You must be signed in to change notification settings - Fork 0
/
forms.php
36 lines (34 loc) · 1.1 KB
/
forms.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
<html>
<head>
<title>forms</title>
<link type="text/css" rel="stylesheet" href="css/bootstrap.css"/>
<link type="text/css" rel="stylesheet" href="css/bootstrap.min.css"/>
<link type="text/css" rel="stylesheet" href="css/bootstrap-theme.css"/>
<link type="text/css" rel="stylesheet" href="css/bootstrap-theme.min.css"/>
</head>
<body class="well">
<form action="testing.php" method="post" enctype="multipart/form-data">
<label>USER NAME:</label><br/>
<input type="text" class="span3" name="username" value=""/>
<br/>
<label>PASSWORD:</label><br/>
<input type="password" class="span3" name="password" value=""/>
<br/>
<label>NAME:</label><br/>
<input type="text" class="span3" name="name" value=""/>
<br/>
<label>ROLL NUMBER:</label><br/>
<input type="text" name="roll" value=""/>
<br/>
<label>HOSTEL:</label><br/>
<input type="text" name="hostel" value=""/>
<br/>
<label>ROOM NUMBER:</label><br/>
<input type="text" name="room" value=""/>
<br/>
<br/>
<button class="btn btn-primary"/>SUBMIT</button>
</form>
<script src="js/bootstrap.js"></script>
</body>
</html>