forked from nandishkotadia/JP-code-for-good-hackathon
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdummy.php
More file actions
28 lines (25 loc) · 1.19 KB
/
dummy.php
File metadata and controls
28 lines (25 loc) · 1.19 KB
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
<?php
?>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
<link rel="stylesheet" type="text/css" href="css/bootstrap-min.css"/>
<link rel="stylesheet" type="text/css" href="css/style.css"/>
</head>
<body>
<center>
<div id="form" style="width:50%">
<form id="jsform" method="POST" action="dummyenter.php">
<h2 style="text-align:center;margin-top:50px;">Dummy Data for users</h2>
<input type="text" class="form-control" name="username" placeholder="username"></input><br/>
<input type="text" class="form-control" name="phno" placeholder="phno"></input><br/>
<input type="text" class="form-control" name="email" placeholder="email"></input><br/>
<input type="text" class="form-control" name="distance" placeholder="'60'in kms"/><br/>
<input type="text" class="form-control" name="speed" placeholder="'60' in kmphs"/><br/>
<input type="text" class="form-control" name="duration" placeholder="'60' in mins"/><br/>
<input type="text" class="form-control" name="eid" placeholder="event id"/><br/>
<button type="submit" class="btn btn-primary" > Enter </button>
</form>
</div>
</body>
</html>