-
Notifications
You must be signed in to change notification settings - Fork 9
/
forms.php
executable file
·93 lines (92 loc) · 2.63 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
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
92
93
<?php include_once("header.php"); ?>
<main role="main" class="container">
<section>
<div class="row">
<div class="col-xs-12 col-sm-6">
<div class="card custom-cards">
<div class="card-header">Forms</div>
<div class="card-body">
<form>
<div class="form-group">
<label>Label 1</label>
<input type="text" class="form-control">
</div>
<div class="form-group">
<label>Label 2</label>
<input type="text" class="form-control">
</div>
<div class="form-group">
<label>Label 3</label>
<select class="form-control">
<option>Opt 1</option>
<option>Opt 2</option>
<option>Opt 3</option>
</select>
</div>
<div class="form-group">
<div class="form-check">
<label class="form-check-label">
<input class="form-check-input" id="optionsRadios1" name="optionsRadios" value="option1" checked="" type="radio">Option one
</label>
</div>
<div class="form-check">
<label class="form-check-label">
<input class="form-check-input" id="optionsRadios2" name="optionsRadios" value="option2" type="radio">Option two
</label>
</div>
</div>
<div class="form-group">
<div class="form-check">
<label class="form-check-label">
<input class="form-check-input" type="checkbox">Check me out
</label>
</div>
</div>
<div class="form-group">
<input type="button" class="btn btn-success" value="Submit">
</div>
</form>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6">
<div class="card custom-cards">
<div class="card-body">
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>ID</th>
<th>Name</th>
<th>Address</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Name 1</td>
<td>Address 1, Address 1, Address 1</td>
</tr>
<tr>
<td>1</td>
<td>Name 1</td>
<td>Address 1, Address 1, Address 1</td>
</tr>
<tr>
<td>1</td>
<td>Name 1</td>
<td>Address 1, Address 1, Address 1</td>
</tr>
<tr>
<td>1</td>
<td>Name 1</td>
<td>Address 1, Address 1, Address 1</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
</main><!-- /.container -->
<?php include_once("footer.php"); ?>