forked from jay13patel/LocalKabadi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform1.php
More file actions
19 lines (16 loc) · 964 Bytes
/
form1.php
File metadata and controls
19 lines (16 loc) · 964 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<fieldset>
<div class="form-group">
<label class="sr-only" for="f1-first-name">Name</label>
<input type="text" name="name" placeholder="Name" class="f1-first-name form-control" id="name">
</div>
<div class="form-group">
<label class="sr-only" for="phn">Phone Number</label>
<input type="number" name="phn" placeholder="Phone Number" class="f1-last-name form-control" id="phn" >
</div>
<div class="f1-buttons center center">
<input id="type" name="type" value="" style="display:none;"/>
<button type="button" class="btn btn-next" onclick="showProg(this)" value=0><i class="fas fa-rupee-sign"></i> Sell</button>
<strong> OR </strong>
<button type="button" onclick="showProg(this)" class="btn btn-next" value=1><i class="fas fa-gift "></i> Donate</button>
</div>
</fieldset>