-
Notifications
You must be signed in to change notification settings - Fork 1
/
auth.html
127 lines (115 loc) · 5.01 KB
/
auth.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
<template name="login">
<h1 class="defTitle">Sign in</h1>
<form class="form-signing" id="loginForm" role="form">
<div class="form-group">
<label for="username">Username</label>
<input type="text" class="form-control" name="username" id="username" placeholder="eg: username" required autofocus>
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" class="form-control" name="password" id="password" placeholder="eg: type your password" required>
</div>
<button type="submit" class="smallbtnclass" style="float: left;">Submit</button>
</form>
</template>
<template name="signupForm">
<h1 class="defTitle">Sign up</h1>
<form class="form-signing" id="signupForm" role="form">
<div class="form-group">
<label for="name">Full Name</label>
<input type="text" class="form-control" name="name" id="name" placeholder="eg: Tuan Iswan" required>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" class="form-control" name="email" id="email" placeholder="eg: info@iswanjumat.com" required>
</div>
<!-- <div class="form-group">
<label for="InputId">NIC No / Passport No</label>
<input type="text" class="form-control" name="InputId" id="InputId" placeholder="eg: 87338402V / 2543878132356" required>
</div>
<div class="form-group">
<label for="InputPhone">Phone Number</label>
<input type="number" class="form-control" name="InputPhone" id="InputPhone" placeholder="eg: 94111352007" required>
</div> -->
<div class="form-group">
<label for="mobile">Mobile Number</label>
<input type="text" class="form-control" name="mobile" id="mobile" placeholder="eg: 94771352007" required>
</div>
<div class="form-group">
<label for="username">User Name</label>
<input type="text" class="form-control" name="username" id="username" placeholder="eg: username" required>
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" class="form-control" name="password" id="password" placeholder="eg: Type your password" required>
</div>
<div class="form-group">
<label for="re-password">Confirm Password</label>
<input type="password" class="form-control" name="re-password" id="re-password" placeholder="eg: Type your password again" required>
</div>
<button type="submit" class="smallbtnclass" style="float: left;">Submit</button>
</form>
</template>
<template name="signup">
<section id="wrapper" class="row">
<nav id="navigation">
<section id="navwrap">
<div id="logosect">
<img src="images/layout_02.png" alt="BidMe Don't miss it">
</div>
<div id="navlist">
<ul id="navlinkssection">
<li><a href="/home">Home</a>
</li>
<li><a href="/bidnow">Bid now</a>
</li>
<li><a href="/signup">Sign up / Sign in</a>
</li>
<li><a href="/contacts">Contacts</a>
</li>
</ul>
<div id="navselectbox" class="row">
<select class="row">
<option value="home">Home</option>
<option value="bidnow">Bid now</option>
<option value="signup">Sign up</option>
<option value="contacts">Contacts</option>
</select>
</div>
</div>
</section>
</nav>
<section id="main_container">
<div id="mainwrapper" class="row">
<aside id="signinfrm" class="col-md-4 col-sm-12 col-xs-12">
{{> login}}
</aside>
<section id="signupfrm" class="col-md-7 col-sm-12 col-xs-12">
{{> signupForm}}
</section>
</div>
</section>
<footer id="footer">
<div id="footerwrap">
<p>© Copyrights BidMe 2014</p>
</div>
</footer>
</section>
</template>
<template name="pss">
{{#if resetPassword}}
<form class="form-signin" id="new-password" action="action">
<div>
<input type="text" id="new-password-password" />
<input type="submit" value="Change Password" />
</div>
</form>
{{else}}
<form class="form-signin" id="recovery-form" action="action">
<div>
<input type="text" id="recovery-email" />
<input type="submit" value="Send Reset Instructions" />
</div>
</form>
{{/if}}
</template>