-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (54 loc) · 2.32 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Page Title</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">
<script type="module">
import * as test from "./js/index.js";
test.nightbotLink();
</script>
</head>
<body>
<div class="px-4 py-3 text-white bg-red-600">
<p class="text-sm font-medium text-center">
App ancora sottosviluppo da parte di SummonHalfa
</p>
</div>
<div class="max-w-sm mx-auto p-8">
<div class="relative">
<form method="POST" id="prova">
<label class="block text-xs font-medium text-gray-500" for="email"> Nickname + Hashtag VALORANT </label>
<input class="m-auto w-full p-3 mt-1 text-sm border-2 border-gray-200 rounded" name="nickname"/>
<input type="submit" id="test" class="mt-4 inline-block px-12 py-3 text-sm font-medium text-white bg-indigo-600 border border-indigo-600 rounded active:text-indigo-500 hover:bg-transparent hover:text-indigo-600 focus:outline-none focus:ring" value="Generate">
</form>
</div>
</div>
<div class="space-y-4">
<details class="p-6 border-l-4 border-green-500 bg-gray-50 group" open>
<summary class="flex items-center justify-between cursor-pointer">
<h5 id ="nightbot" class="text-lg font-medium text-gray-900">
</h5>
</summary>
</details>
</div>
<div class="space-y-4">
<details class="p-6 border-l-4 border-green-500 bg-gray-50 group" open>
<summary class="flex items-center justify-between cursor-pointer">
<h5 id ="streamelements" class="text-lg font-medium text-gray-900">
</h5>
</summary>
</details>
</div>
<div class="space-y-4">
<details class="p-6 border-l-4 border-green-500 bg-gray-50 group" open>
<summary class="flex items-center justify-between cursor-pointer">
<h5 id ="streamlabs" class="text-lg font-medium text-gray-900">
</h5>
</summary>
</details>
</div>
</body>
</html>