forked from essnine/HRMS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathboot-form-3B5.html
More file actions
91 lines (70 loc) · 2.74 KB
/
boot-form-3B5.html
File metadata and controls
91 lines (70 loc) · 2.74 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
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h4 style="font-family: verdana ">Consultancy</h4>
<p><font face="Verdana" size="1.5px">*All fields are mandetory</font></p>
<form class="form-horizontal" action="/action_page.php">
<div class="form-group" style="width: 1500px">
<label class="control-label col-sm-2" style=" text-align: left">Details of Work:</label>
<div class="col-sm-10">
<input type="text" style="width:500px ; height:19" placeholder="">
</div>
</div>
<div class="form-group" style="width: 1500px">
<label class="control-label col-sm-2" style=" text-align: left">Amount:</label>
<div class="col-sm-10">
<input type="text" style="width:200px; height:19" placeholder="">
</div>
</div>
<div class="form-group">
<div class=" col-sm-10">
<button type="submit" class="btn btn-default">Add</button>
</div>
</form>
</div>
<div class="table-responsive">
<table border="3" style="font-family:Verdana; font-size:12px " class="table" >
<caption>Details</caption>
<td>Details Of Work</td>
<td>Amount</td>
<td></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td><input type="button" value="Edit"></td>
<td><input type="button" value="Verify"></td>
</table>
</div>
<center>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-default">Save & Next</button>
<button type="submit" class="btn btn-default">Reset</button>
</div>
</div>
</center>
</body>
</html>