This repository has been archived by the owner on Nov 23, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
therapistsignup.html
151 lines (151 loc) · 6.59 KB
/
therapistsignup.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>ABA Lookup - Signup</title>
<meta name="description" content="" />
<link href="css/font-awesome.css" rel="stylesheet" type="text/css" />
<link href="css/general.css" rel="stylesheet" type="text/css" />
<link href="css/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<div class="container clearfix">
<h1>ABA Lookup</h1>
<!--
<nav class="right">
<div class="icon">
<i class="icon-search"></i>
</div>
<a href="#">Search</a>
<div class="icon">
<i class="icon-user"></i>
</div>
<a href="#">My Profile</a>
</nav>
-->
</div>
</header>
<div id="content">
<div class="container clearfix">
<h2>Complete your profile to appear in matches</h2>
<div class="left">
<form action="#" method="post">
<div class="row">
<input type="checkbox" id="available" name="available" />
<label for="available">Available</label>
</div>
<div class="row">
<h2>Gender</h2>
<input type="radio" id="male" name="gender" />
<label for="male">Male</label>
<input type="radio" id="female" name="gender" />
<label for="female">Female</label>
<input type="radio" id="none" name="gender" />
<label for="none">Undisclosed</label>
</div>
<div class="row">
<input type="checkbox" id="conduct" name="conduct" />
<label for="conduct">I have read and agree to the code of conduct</label>
</div>
<div class="row">
<input type="checkbox" id="course" name="course" />
<label for="course">I have taken and completed the ABA course</label>
</div>
<div class="row">
<h2>Your locations</h2>
<select multiple>
<option value="foo">Foo</option>
<option value="bar">Bar</option>
<option value="baz">Baz</option>
<option value="qux">Qux</option>
<option value="car">Car</option>
<option value="zip">Zip</option>
</select>
</div>
<div class="row">
<input id="next-step" type="submit" value="Next Step" />
</div>
</form>
</div>
<div class="right">
<h3>Details</h3>
<p>
Lorem ipsum dolor sit amet.
</p>
</div>
</div>
</div>
<footer>
<div class="container clearfix">
<div class="left">
<h4>Contact Us</h4>
<div class="soc">
<i class="icon-twitter"></i>
</div>
<div class="soc-tri"></div>
<div class="soc-link">Twitter</div>
<div class="soc">
<i class="icon-facebook"></i>
</div>
<div class="soc-tri"></div>
<div class="soc-link">Facebook</div>
<div class="soc">
<i class="icon-envelope"></i>
</div>
<div class="soc-tri"></div>
<div class="soc-link">Email</div>
<div class="soc">
<i class="icon-globe"></i>
</div>
<div class="soc-tri"></div>
<div class="soc-link">Website</div>
<!--
Ideally I'd like this
<a class="social" href="#">
<i class="icon-twitter"></i>
Twitter
</a>
But I'd at least be happy with this
<a class="social" href="#">
<i class="icon-facebook"></i>
<span class="social-triangle"></span>
Facebook
</a>
-->
</div>
<div class="center">
<h4>Navigation</h4>
<a href="#">Sponsors</a>
<a href="#">Documentation & Help</a>
<a href="http://community.muncompsci.ca/">MUN CompSci Society</a>
<a href="http://www.autism.nf.net/">Autism Society NL</a>
<a href="#">Other Resources</a>
</div>
<div class="right">
<h4>About Us</h4>
<div class="about">
<h5>ABA Lookup</h5>
<p>
This software is copyright MUN Comp Sci Community Initiative and is licensed under MIT Open Source restrictions.
</p>
</div>
</div>
</div>
</footer>
<script type="text/javascript">
WebFontConfig = {
google: { families: [ 'Open+Sans:400,800,700:latin' ] }
};
(function() {
var wf = document.createElement('script');
wf.src = 'https://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
wf.type = 'text/javascript';
wf.async = 'true';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(wf, s);
})();
</script>
</body>
</html>