forked from seungeunn/webgrus_team7
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresult.html
57 lines (40 loc) · 2.07 KB
/
result.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link rel="stylesheet" href="resultStyle.css"/>
<title>Mbti</title>
<link
href="https://fonts.googleapis.com/css2?family=Jua&display=swap"
rel="stylesheet"
/>
</head>
<body>
<h2 id="sub">생기발랄한 장난꾸러기</h1>
<h1 id="mbti" > ESFP </h1>
<p id = "explain">
상식을 중요시하며 다른 사람들과 상호작용하고
자기 자신을 표현하는 일에서 훌륭한 성과를 발휘할 수 있다고 합니다.
해당 유형의 추천 직업은 아래와 같습니다.
</p>
<p> 가장 마음에 드는 직업을 하나만 선택하세요!</p>
<input type="checkbox" name= 'job' value = "val1" onclick='checkOnlyOne(this);'> <label>a </label> <br>
<input type="checkbox" name ='job' value = "val2" onclick='checkOnlyOne(this);'> <label>b </label> <br>
<input type="checkbox" name ='job' value = "val3" onclick='checkOnlyOne(this);'> <label>c </label> <br>
<input type="checkbox" name ='job' value = "val4" onclick='checkOnlyOne(this);'> <label>d </label> <br>
<input type="checkbox" name ='job' value = "val5" onclick='checkOnlyOne(this);'> <label>e </label> <br> <br>
<br>
<!-- 사용자의 MBTI 결과와 선택된 직업값 넘겨주기 위한 form 태그 -->
<div style="text-align:right;">
<form method="GET" onsubmit='return check();' action="connect.php">
<input type="hidden" name="hiddenMbti" id="hiddenMbti" value="mbti">
<input type="hidden" name="hiddenJob" id="hiddenJob" value= "job">
<input type="submit" class="NextButton" value="통계 보기"/>
</form>
</div>
<script src="./result.js"></script>
</body>
</html>