-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresumeInput.html
39 lines (33 loc) · 1.23 KB
/
resumeInput.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<h3>이력서 작성하기</h3>
<form method="post" action="resumeReg">
<p>이름</p>
<input type="text" name="name" placeholder="이름을 입력해 주세요">
<p>희망직무</p>
<input type="checkbox" name="duties" value="webdeveloper">웹개발<br/>
<input type="checkbox" name="duties" value="application">응용프로그램개발<br/>
<input type="checkbox" name="duties" value="analysis">시스템 분석 및 설계<br/>
<input type="checkbox" name="duties" value="publishing">퍼블리싱 및 UI개발<br/>
<p>경력여부</p>
<input type="radio" name="career" value="no">신입
<input type="radio" name="career" value="yes">경력
<p>희망연봉</p>
<select name="salary">
<option value="0">회사내규에 따름</option>
<option value="2400+">2,400만원이상 </option>
<option value="2600+">2,600만원이상 </option>
<option value="2800+">2,800만원이상 </option>
</select>
<p>자기소개</p>
<textarea name="introduce" placeholder="자기소개를 입력해주세요" cols="30" rows="4"></textarea>
<br/>
<input type="submit" value="전송">
</form>
</body>
</html>