-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 1.19 KB
/
index.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
<!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="./js/qrcode.min.js" defer></script>
<script src="./js/script.js" defer></script>
<link href="./css/style.css" rel="stylesheet">
<title>QRFI</title>
</head>
<body>
<header class="header">
<h1>QRFI</h1>
</header>
<div id="qrcode"></div>
<div class="control">
<select id="enc" class="enc-select">
<option value="">보안 유형을 선택해주세요.</option>
<option value="WPA">WPA</option>
<option value="WEP">WEP</option>
<option value="WPA2">WPA2-EAP</option>
<option value="nopass">없음</option>
</select>
<input type="text" id="ssid" name="ssid" class="ssid" placeholder="SSID">
<input type="text" id="password" name="pass" class="pass" placeholder="Password">
<button class="generate">Generate</button>
</div>
</body>
</html>