Skip to content

Commit 08be1d2

Browse files
authored
Create create-session.component.html
1 parent 6b2933d commit 08be1d2

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<div class="col-md-12">
2+
<h3>Create Session</h3>
3+
</div>
4+
<div class="col-md-6">
5+
<form autocomplete="off">
6+
<div class="form-group">
7+
<label for="sessionName">Session Name:</label>
8+
<input id="sessionName" type="text" class="form-control" placeholder="session name..." />
9+
</div>
10+
<div class="form-group">
11+
<label for="eventDate">Presenter:</label>
12+
<input id="presenter" type="text" class="form-control" placeholder="presenter..." />
13+
</div>
14+
<div class="form-group">
15+
<label for="duration">Duration:</label>
16+
<select class="form-control">
17+
<option value="">select duration...</option>
18+
<option value="1">Half Hour</option>
19+
<option value="2">1 Hour</option>
20+
<option value="3">Half Day</option>
21+
<option value="4">Full Day</option>
22+
</select>
23+
</div>
24+
<div class="form-group">
25+
<label for="level">Level:</label>
26+
<select ngControl="level" class="form-control">
27+
<option value="">select duration...</option>
28+
<option value="Beginner">Beginner</option>
29+
<option value="Intermediate">Intermediate</option>
30+
<option value="Advanced">Advanced</option>
31+
</select>
32+
</div>
33+
<div class="form-group">
34+
<label for="abstract">Abstract:</label>
35+
<textarea id="abstract" rows=3 class="form-control" placeholder="abstract..."></textarea>
36+
</div>
37+
<button type="submit" class="btn btn-primary">Save</button>
38+
<button type="button" class="btn btn-default">Cancel</button>
39+
</form>
40+
</div>

0 commit comments

Comments
 (0)