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
94
95
96
97
98
99
100
101
102
103
104
|
<!DOCTYPE html> <html> <head> <?php require_once '../include/head.php'; ?> <?php require_once '../include/checkuser.php'; ?> <?php require_once '../include/Nav_bar.php'; ?> </head> <body> <!-- line between nav bar and content --> <div class="text-right"> <ul class="breadcrumb"> <li class="active"></li> </ul> </div> <div class="container-fluid pathways-container"> <table class="table table-striped table-bordered table-hover table-condensed"> <thead> <tr> <th>column 1</th> <th>column 2</th> <th>column 3</th> <th>column 4</th> <th>column 5</th> </tr> </thead> <tbody> <?php for ($i = 0; $i < 5; $i++) { ?> <tr> <td><input type="checkbox" name="student[selected][]" class="select-all-checkbox" /></td> <td><a href="" class="btn"><i class="icon-pencil"></i></a></td> <td></td> <td></td> <td></td> </tr> <?php } ?> </tbody> </table>
<!-- select tag --> <select id="campus_id" class="input-medium" placeholder="" name="search[campus_id]"> <option value=""> </option> <option value="1">1</option> <option value="2">2</option> </select> <!-- select tag --> <br> <!-- remove btn(clear) --> <button id="clear_sorting_btn" class="btn" type="button"> <i class="icon-remove"></i> Clear sorting </button> <!-- remove btn (clear) --> <br> <!-- Go btn --> <button class="btn" style="margin-left:30px" type="submit">GO</button> <!-- Go btn --> <br> <!-- Add btn on right side --> <a class="btn pull-right" href="form.php"> <i class="icon-plus"></i> Add </a> <!-- Add btn on right side -->
<!-- Add btn on left side --> <a class="btn pull-left" href="form.php"> <i class="icon-plus"></i> Add </a> <!-- Add btn on left side -->
<!-- ADd btn --> <a class="btn" href="form.php"> <i class="icon-plus"></i> Add </a> <!-- Add btn --> <br> <!-- select all btn & clear select btn --> <div class="btn-group"> <button id="select_all_btn" class="btn btn-small">Select All</button> <button id="delete_btn" class="btn btn-small">Delete</button> </div> <!-- select all btn & clear select btn --> <br> <!-- text field --> <input id="number" class="" type="text" maxlength="200" placeholder="placeholder" value="" name=""> <!-- text field --> <br> <!-- date picker --> <div class="input-append date-picker"> <input id="data_input_date" class="dateISO" type="text" maxlength="200" placeholder="Data Input Date" data-format="yyyy-MM-dd" value="2013-10-28" name="student[data_input_date]"> <span class="add-on"> <i class="icon-calendar" data-date-icon="icon-calendar" data-time-icon="icon-time"></i> </span> </div> <!-- date picker --> </div> <!-- /container --> </body> </html>
|