-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtemplates.html
69 lines (63 loc) · 2.34 KB
/
templates.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
<template name="register">
<form class="register">
<label>First Name</label> <input type="text" name="firstName">
<label>Last Name</label> <input type="text" name="lastName">
<label>Email</label> <input type="email" name="registerEmail"><br/>
<label>I am interested in...</label> <input type="text" name="field"><br/>
<label>Password</label> <input type="password" name="registerPassword">
<label>Confirm Password</label> <input type="password" name="registerPassword2"><br/>
<label>I need a mentor</label> <input type="checkbox" name="isMentee"><br/>
<label>I want to be a mentor</label> <input type="checkbox" name="isMentor"><br/>
<input type="submit" value="Register">
</form>
</template>
<template name="mentor">
<li>{{profile.firstName}} {{profile.lastName}}: {{profile.field}}</li>
</template>
<template name="login">
<form>
<input type="email" name="loginEmail">
<input type="password" name="loginPassword">
<input type="submit" value="Login">
</form>
</template>
<template name="dashboard">
<p><a href="#" class="logout">Logout</a></p>
</template>
<template name="nav">
<div class="masthead clearfix">
<div class="inner">
<h3 class="masthead-brand"><big>seed<strong>LET</strong></big> <span class="glyphicon glyphicon-leaf"></span></h3>
<nav>
<ul class="nav masthead-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#">Profile</a></li>
<li><a href="#login">Signin</a></li>
</ul>
</nav>
</div>
</div>
</template>
<template name="search">
<div class="inner cover">
<h1 class="cover-heading"> CONNECT with <br> EXPERIENCE </h1>
<br>
<form role = "form">
<div class = "form group">
<label for = "search">I want to connect with someone in...</label>
<input type = "text" class = "form-control" id = "search">
</div>
</form>
<p class="lead">
<button type ="button" class = "btn btn-default btn-lg">Register</button>
</p>
</div>
</template>
<template name="footer">
<div class="mastfoot">
<div class="inner">
<!-- footer -->
</div>
</div>
</template>