-
Notifications
You must be signed in to change notification settings - Fork 1
/
addNewSubject.html
30 lines (30 loc) · 1.5 KB
/
addNewSubject.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
<div class="card text-center" style="width: 60rem; margin:0px auto; font-size: 1.2em;">
<div class="card-body">
<br>
<form target="phpIframe" action="{FORM_ACTION}" method="post">
<div class="form-group">
<label for="subject_name">{SUBJECT_NAME_TITLE}</label>
<input type="text" class="form-control" name="subject_name" id="subject_name" autocomplete="subject_name" placeholder="Веб базирани информациони системи/Web based information systems">
</div>
<div class="form-group">
<label for="assistant_selection">{ASSISTANT_SELECTION_TITLE}</label>
<select class="form-control" name="assistant_selection" id="assistant_selection">
{ASSISTANT_SELECTION_VALUES}
</select>
</div>
<div class="form-group">
<label for="studies[]">{STUDY_TITLE}</label>
<select class="form-control" name="studies[]" multiple="" size="{STUDY_SIZE}">
{STUDY_VALUES}
</select>
</div>
<div class="form-group">
<button type="submit" class="btn btn-success">{ADD_NEW_SUBJECT}</button>
<button type="reset" class="btn btn-danger">{RESET}</button>
</div>
</form>
</div>
<br>
<iframe id="phpIframe" name="phpIframe" src="" class="card-footer text-muted" height="90rem"></iframe>
<br>
</div>