-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathroll_mobile.html
More file actions
70 lines (65 loc) · 3.89 KB
/
roll_mobile.html
File metadata and controls
70 lines (65 loc) · 3.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- <title>NextBots Roller | By syirezz:3</title> -->
<!-- CSS only -->
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<!-- JS, Popper.js, and jQuery -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<!-- Primary Meta Tags -->
<title>NRoll - A small parody of Nico's RNG</title>
<meta name="title" content="NRoll - A small parody of Nico's RNG" />
<meta name="description" content="This site is based on the game Nico's Nexbots and Nico's RNG.
Developer: syirezz" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://kailuser.github.io/nroller/" />
<meta property="og:title" content="NRoll - A small parody of Nico's RNG" />
<meta property="og:description" content="This site is based on the game Nico's Nexbots and Nico's RNG.
Developer: syirezz" />
<meta property="og:image" content="https://gcdnb.pbrd.co/images/GZlX733f7WJ7.png?o=1" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://kailuser.github.io/nroller/" />
<meta property="twitter:title" content="NRoll - A small parody of Nico's RNG" />
<meta property="twitter:description" content="This site is based on the game Nico's Nexbots and Nico's RNG.
Developer: syirezz" />
<meta property="twitter:image" content="https://gcdnb.pbrd.co/images/GZlX733f7WJ7.png?o=1" />
</head>
<body>
<div class="container">
<h1 class="display-4">NextBots Roller (Mobile)</h1>
<p>Beta version</p>
<p class="lead">Logined as <span id="username"></span></p>
<button class="btn btn-primary btn-lg target" id="rollButton">Random roll</button>
<button class="btn btn-primary btn-lg" data-toggle="modal" data-target="#aboutModal" id="AboutButton">About NRoll</button><br>
<!-- <button class="btn btn-outline-dark" id="darkModeToggle">Toggle Dark Mode</button> -->
</div>
<div class="modal fade" id="aboutModal" tabindex="-1" role="dialog" aria-labelledby="aboutModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="aboutModalLabel">About NRoll</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p class="text-about">You can find the source code of this site on <a href="https://github.com/KailUser/nroller">GitHub</a>.</p>
<p class="text-about">You can find me on <a href="https://t.me/syirezz_official">Telegram</a> and on my <a href="https://t.me/DoubleD0t">Telegram Channel</a>.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<script src="script_mob.js"></script>
</body>
</html>