forked from kingfredie/SESSION-GENERATOR
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwasipage.html
84 lines (80 loc) · 2.67 KB
/
wasipage.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
display: flex;
flex-direction: column;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f4f4f4;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
color: #3c3c3c;
}
header {
text-align: center;
padding: 1em;
background-color: #007AFF;
color: #ffffff;
width: 100%;
}
.btn {
--color: #007AFF;
--color2: #ffffff;
width: 200px;
padding: 0.8em 1.75em;
background-color: #ffffff;
border-radius: 6px;
border: 1px solid #d4d4d4;
transition: .3s;
margin-bottom: 24px;
font-size: 16px;
color: var(--color);
}
.btn:hover {
background-color: #f2f2f2;
}
footer {
position: bottom;
bottom: 10px;
color: #8e8e93;
font-size: 14px;
}
footer a {
color: #007AFF;
text-decoration: none;
transition: color 0.3s ease;
}
footer a:hover {
color: #0056b3;
position: bottom;
}
</style>
</head>
<body>
<header>
<h1>Welcome to Fredietech bot website</h1>
</header>
<h1>Get session id</h1>
<p>Get session id through QR or pairing Code</p>
<button onclick="window.open('/wasiqr')" class="btn">QR Code</button>
<button onclick="window.open('/pair')" class="btn">Pair Code</button>
<h2>My bot Repositories</h2>
<button onclick="window.open('https://github.com/Fred1e/LUCKY_MD')" class="btn">Manjiro-Sano-md</button>
<button onclick="window.open('t.me/freditech')" class="btn">Telegram me</button>
<button onclick="window.open('https://wa.me/263785028126')" class="btn">Contact Me</button>
<h2>Connect with me</h2>
<button onclick="window.open('https://whatsapp.com/channel/0029VaihcQv84Om8LP59fO3f')" class="btn">Wa Channel</button>
<button onclick="window.open('https://chat.whatsapp.com/HdrwMccSFIaB5Zi7s9BzN9')" class="btn">Wa Group</button>
<button onclick="window.open('https://t.me/+u3zlb5y6OfxhOTdk')" class="btn">Telegram Group</button>
<button onclick="window.open('https://www.facebook.com/profile.php?id=61553209932337')" class="btn">Facebook</button>
<button onclick="window.open('https://www.instagram.com/fredi.simba.tz')" class="btn">Instagram</button>
<button onclick="window.open('https://youtube.com/@freeonlinetvT1')" class="btn">Youtube</button>
</body>
<footer>
<p>©fredietech Wa bots | <a href="https://github.com/Fred1e" target="_blank">GitHub</a></p>
</footer>
</html>