-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodifyform.html
66 lines (54 loc) · 2.22 KB
/
modifyform.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
<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://code.jquery.com/jquery-3.4.1.js" integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU=" crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" href="modifyform.css">
<script src="modifyform.js"></script>
</head>
<style>
body,html{
/*background-color:#f2f2f2;*/
padding:0px;
margin:0px;
}
.flexBox{
display:flex;
justify-content: center;
align-items: center;
}
.inContain{
width:90%;
display: flex;
}
</style>
<body onload="init()">
<div class="flexBox">
<div class="inContain" style="flex-direction: row;width:95%;justify-content: space-between;align-items: center; font-weight: bold;
font-size:1.5em;"><img style="width:25px;" src="./arrow-left-solid.svg">일단 러프하게 <img style="width:25px"src="./menu.svg"></div>
</div>
<div class="flexBox">
<div id="container">
<form>
<p id="lable">학번</p>
<input type="text" name="studentId" class="inputField" readonly>
<p id="lable">이름</p>
<input type="text" name="studentName" class="inputField" id="nameField">
<p id="lable">기존 비밀번호</p>
<input type="text" name="studentPw" class="inputField" id="pwField">
<p id="pwCheckLable">기존에 사용중이던 비밀번호를 입력해주세요.</p>
<p id="lable">수정 비밀번호</p>
<input type="text" name="modifyPw" class="inputField" id="modifyPwField">
<p id="lable">학적상태</p>
<select name="studentStatus" class="selectField">
<option value="inSchool">재학</option>
<option value="rest">휴학</option>
<option value="graduation">졸업</option>
</select>
<input id="submitBtn" type="submit" value="수정하기">
</form>
</div>
</div>
</body>
</html>