-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevent.html
More file actions
71 lines (57 loc) · 2.03 KB
/
Copy pathevent.html
File metadata and controls
71 lines (57 loc) · 2.03 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
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
67
68
69
70
71
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Insta Tag</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1 id="title">📍 모임</h1>
<div class="card">
<input id="name" placeholder="이름" oninput="showSuggestions()">
<input id="ig" placeholder="인스타그램 ID 또는 프로필 링크"
autocapitalize="off"
autocomplete="username"
spellcheck="false"
oninput="showSuggestions()">
<div class="ig-helper">
<a href="#" onclick="openInstagram(); return false;">
내 인스타 ID 확인하기
</a>
</div>
<button onclick="join()">참석하기</button>
</div>
<div class="filters">
<button onclick="filterStatus('all')">전체</button>
<button onclick="filterStatus('pending')">대기</button>
<button onclick="filterStatus('confirmed')">확정</button>
</div>
<div class="card" style="display: flex; flex-direction: row; align-items: center; justify-content: space-between;">
<button onclick="shareLink()">📤 모임 공유</button>
<button class="danger" onclick="deleteEvent()" style="margin-left: auto;">
모임 삭제
</button>
</div>
<h2><div>👥 참석자 <small id="participantStats"></small></div>
<button onclick="copyAllIG(lastDataObj, currentFilter)">전체 ID 복사</button>
</h2>
<div id="list"></div>
</div>
<script src="config.js"></script>
<script src="app.js"></script>
<!--script>
window.onload = function (){
document.getElementById("name").value = localStorage.getItem("name") || "";
document.getElementById("ig").value = localStorage.getItem("ig") || "";
};
document.getElementById("name").addEventListener("input", function(){
localStorage.setItem("name", this.value);
});
document.getElementById("ig").addEventListener("input", function(){
localStorage.setItem("ig", this.value);
});
</script-->
</body>
</html>