-
Notifications
You must be signed in to change notification settings - Fork 0
/
forms.html
124 lines (101 loc) · 4.32 KB
/
forms.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
<link rel="stylesheet" type="text/css" href="style/bs/css/bootstrap.css"/>
<!-- <link rel="stylesheet" type="text/css" href="BootstrapFormHelpers-master/dist/css/bootstrap-formhelpers.css"/>
<link rel="stylesheet" type="text/css" href="BootstrapFormHelpers-master/dist/css/bootstrap-formhelpers.min.css"> -->
<style type="text/css">
.centered{
float: right;
}
</style>
<div class="container">
<ul class="nav nav-tabs nav-justified">
<li class="active"><a href="#section-1" data-toggle="tab">Parents</a></li>
<li><a href="#section-2" data-toggle="tab">Register</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane fade in active" id="section-1">
<p>Parents List </p>
</div>
<div class="tab-pane fade" id="section-2" >
<form role="form" >
<div class="form-group">
<div class="row">
<div class="col-xs-6 col-md-3">
<a href="#" class="thumbnail">
<img src="images/avocode.png" alt="..." class="img-rounded">
</a>
</div>
</div>
<!-- end row for DP -->
<form role="form" class="form-inline" >
<div class="row">
<div class="col-lg-4">
<label for="input-fname">FirstName</label>
<input type="text" class="form-control" id="fname" placeholder="first name">
</div>
</div>
<div class="row">
<div class="col-lg-4">
<label for="input-lname">LastName</label>
<input type="text" class="form-control" id="lname" placeholder="last name">
</div>
</div>
<div class="row">
<div class="col-lg-4">
<label for="inputEmail" >Email</label>
<input type="text" class="form-control" id="fname" placeholder="[email protected]">
</div>
</div>
</form>
<div class="row">
<div class="col-md-4">
<div class="contacts">
<label>Contacts:</label>
<div class="form-group multiple-form-group input-group">
<div class="input-group-btn input-group-select">
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
<span class="concept">Phone</span> <span class="caret"></span>
</button>
<ul class="dropdown-menu" role="menu">
<li><a href="#phone">Phone</a></li>
<li><a href="#fax">Fax</a></li>
<li><a href="#skype">Skype</a></li>
<li><a href="#email">E-mail</a></li>
<li><a href="#www">Web</a></li>
</ul>
<input type="hidden" class="input-group-select-val" name="contacts['type'][]" value="phone">
</div>
<input type="text" name="contacts['value'][]" class="form-control">
<span class="input-group-btn">
<button type="button" class="btn btn-success btn-add">+</button>
</span>
</div>
</div>
</div>
</div>
<div class="row ">
<div class="col-lg-4">
<div class="input-group">
<!-- <label for="inputkname">Kidname</label> -->
<input type="text" class="form-control" id="kname" placeholder="Your kidname">
<span class="input-group-addon "><span class="glyphicon glyphicon-user"></span></span>
</div>
</div>
</div>
<div class="centered row form-group btn-group btn-justified">
<button class="btn btn-danger btn-lg" type="button">Cancel</button>
<button class="btn btn-success btn-lg" type="button">Submit</button>
</div>
</div>
<!-- end form-group -->
</form>
</div>
<!-- end section-2 -->
</div>
<!-- end tab-content -->
</div>
<!-- end container -->
<script type="text/javascript" src="behaviour/contacts.js"></script>
<script type="text/javascript" src="behaviour/jQuery/jquery.js"></script>
<!-- // <script type="text/javascript" src="BootstrapFormHelpers-master/dist/js/bootstrap-formhelpers.js"></script>
// <script type="text/javascript" src="BootstrapFormHelpers-master/dist/js/bootstrap-formhelpers.min.js"></script> -->
<script type="text/javascript" src="style/bs/js/bootstrap.js"></script>