-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html~
92 lines (89 loc) · 3.98 KB
/
home.html~
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 xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Coursera search for courses offering Statements of Accomplishment</title>
<link rel='stylesheet' href='./styles/bootstrap.min.css' />
<link href="/styles/StyleSheet.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="img-responsive img-header" alt="Expedition Seven Takes Breathtaking Photo of Earth's Atmosphere">
<div class="col-sm-12 text-center">
<h2>Coursera courses still offering Statements of Accomplishment</h2>
</div>
</div>
<div class="jumbotron col-sm-12 text-center">
<h4>Select to filter search by specific starting DAY, MONTH, or YEAR.</h4>
<h4>Then input appropriate numbers and click SUBMIT.</h4>
</div>
<br />
<br />
<div class='container'>
<div class='row'>
<div class='col-sm-6'>
<h3>Course Start Date:</h3>
<br />
<div name="myform" role="form" class="form-horizontal">
<div class="form-group">
<label for="Search_by" class="control-label col-sm-3">Search by :</label>
<div class="col-sm-9 btn-group" data-toggle="buttons">
<label class="btn btn-primary">
<input type="radio" name="Search_by" id="DAY" value="DAY" />DAY
</label>
<label class="btn btn-primary active">
<input type="radio" name="Search_by" id="MONTH" value="MONTH" checked />MONTH
</label>
<label class="btn btn-primary">
<input type="radio" name="Search_by" id="YEAR" value="YEAR"/>YEAR
</label>
</div>
</div>
<br />
<br />
<div class="form-group">
<label for="Day" class="control-label col-sm-3">Day:</label>
<div class='col-sm-6'>
<input type="text" class="form-control" name="Day" id="Day" placeholder="Day" /> (i.e. 1)
</div>
</div>
<br />
<br />
<div class="form-group">
<label for="Month" class="control-label col-sm-3">Month:</label>
<div class='col-sm-6'>
<input type="text" class="form-control" name="Month" id="Month" placeholder="Month" /> (i.e. 2)
</div>
</div>
<br />
<br />
<div class="form-group">
<label for="yyyy" class="control-label col-sm-3">Year:</label>
<div class='col-sm-6' >
<input type="text" class="form-control" name="yyyy" id="yyyy" placeholder="yyyy" /> (i.e. 2016)
</div>
</div>
<br />
<br />
<div class="form-group">
<label class="btn btn-success col-sm-6 col-sm-offset-3">SUBMIT</label>
</div>
</div>
</div>
<br />
<div class='col-sm-6'>
<h3>Course Search Results:</h3>
<br />
<div id="results">
</div>
</div>
</div>
<address>
<div class="col-sm-12 text-center">
<h6><a href="mailto:[email protected]" >Questions? Email me</a></h6>
</div>
</address>
<!--local jquery, bootstrap, home scripts-->
<script src='./scripts/jquery-2.1.4.min.js'> </script>
<script src='./scripts/bootstrap.min.js'> </script>
<script src='./scripts/home.js'> </script>
</body>
</html>