-
Notifications
You must be signed in to change notification settings - Fork 6
/
form.php
57 lines (42 loc) · 1.89 KB
/
form.php
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
<button type="button" class="btn btn-primary btn-lg" data-toggle="modal" data-target="#registermentor" style="width:300px;">
join us
</button>
<div class="modal fade" id="registermentor" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title">Sign up as a Mentor </h4>
</div>
<div class="modal-body">
<form accept-charset="UTF-8" action="/mentors" method="post"><div style="display:none"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="M6yvcdpx3ZcBl16iOYSxL6o5txo1qJx8oJrZ/D3159U=" /></div>
<h3 class="center"> Basic Details </h3>
<div class="field">
<input type="text" style="width:500px;padding:6px;border-radius:5px;" placeholder="Person Name"><br><br>
</div>
<div class="field">
<input type="text" style="width:500px;padding:6px;border-radius:5px;" placeholder="Company Name"><br><br>
</div>
<div class="field">
<label for="mentor_password">Password</label>
<br />
<input autocomplete="off" id="mentor_password" name="mentor[password]" type="password" />
</div>
<div class="field">
<label for="mentor_password_confirmation">Password confirmation</label><br />
<input autocomplete="off" autofocus="autofocus" id="mentor_password_confirmation" name="mentor[password_confirmation]" type="password" />
</div>
<div class="field">
<label for="mentor_passout_year">Passout year</label><br />
<input id="mentor_passoutyear" name="mentor[passoutyear]" type="text" />
</div>
<hr/>
<br/>
<div class="actions">
<input class="btn btn-success" name="commit" type="submit" value="Sign up" />
</div>
</form>
</div>
</div>
</div>
</div>