summaryrefslogtreecommitdiff
path: root/views/partials/signin.ejs
blob: 535b24cda4f9edaeb28d134539e9042c088248fe (plain)
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
<div class="mediaDrawer fixed animate signin">
	<span class="bigClose">X</span>
	<div class="box">
		<form id="signIn">
			<a href="#" class="facebook"><b class="icon-social-facebook"></b><span>Sign in with Facebook</span></a>
			<b class="info">– or the ol' fashion way –</b>
			<li>
			<label class="description" for="usernameInput">Username:</label>
			<div>
				<input id="usernameInput" name="usernameInput" class="element text medium" type="text" maxlength="255" value=""/> 
			</div>
			</li> 
			<li>
			<label class="description" for="passwordInput">Password:</label>
			<div>
				<input id="passwordInput" name="passwordInput" class="element text medium" type="password" maxlength="255" value=""/> 
			</div> 
			</li>
			<li class="buttons">
				<input type="hidden" name="form_id" value="795208" />
				<input id="saveForm" class="button_text" type="submit" name="submit" value="Submit" />
			</li>
		</form>
	</div>
</div>

<div class="mediaDrawer fixed animate signup">
	<span class="bigClose">X</span>
	<div class="box">
		<form id="signUp">
			<a href="#" class="facebook"><b class="icon-social-facebook"></b><span>Sign up with Facebook</span></a>
			<b class="info">– or the ol' fashion way –</b>
			<li>
			<label class="description" for="usernameInput">Username:</label>
			<div>
				<input id="usernameInput" name="usernameInput" class="element text medium" type="text" maxlength="255" value=""/> 
			</div>
			</li>
			<li>
			<label class="description" for="emailInput">Email:</label>
			<div>
				<input id="emailInput" name="emailInput" class="element text medium" type="text" maxlength="255" value=""/> 
			</div>
			</li> 
			<li>
			<label class="description" for="passwordInput1">Password:</label>
			<div>
				<input id="passwordInput1" name="passwordInput1" class="element text medium" type="password" maxlength="255" value=""/> 
			</div> 
			</li>
			<li>
			<label class="description" for="passwordInput2">Again!</label>
			<div>
				<input id="passwordInput2" name="passwordInput2" class="element text medium" type="password" maxlength="255" value=""/> 
			</div> 
			</li>
			<li class="buttons">
				<input type="hidden" name="signUp" value="" />
				<input id="saveForm" class="button_text" type="submit" name="submit" value="Submit" />
			</li>
		</form>
	</div>
</div>