Sidebar.html
1.22 KB
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
<!DOCTYPE html>
<html>
<head>
<base target="_top">
</head>
<body>
<form>
<input type="hidden" id="errorCode" value="error-0">
<p>
<strong>교수명</strong>
<input type="text" id="formInputProfName" name="name" value="김가나">
</p>
<p>
<strong>강좌코드</strong>
<input type="text" id="formInputClassCode" name="classcode" value="CEEEE">
</p>
<p>
<strong>강의명</strong>
<input type="text" id="formInputClassName" name='classname' value="공학과경영">
</p>
<p>
<strong>정원</strong>
<input type="number" id="formInputNumPeople" name="num-people" value="1" min="1">
</p>
<p>
<strong>강의실</strong>
<input type="text" id="formInputClassRoom" name="classroom" value="멀303" placeholder="셀을 선택하면 자동으로 입력됩니다." disabled>
</p>
<p>
<strong>선택 시간</strong>
<input type="text" id="formInputTime" name="time" value="" placeholder="셀을 선택하면 자동으로 입력됩니다." disabled>
</p>
<p>
<input type="button" value="제출" id="formSubmitBtn">
</p>
</form>
<?!= HtmlService.createHtmlOutputFromFile('SidebarJS').getContent(); ?>
</body>
</html>