-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
app.py
53 lines (49 loc) · 1.99 KB
/
app.py
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
import os
from flask import Flask
app = Flask(__name__)
@app.route('/')
def home():
return """
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="WOODcraft SudoR2spr" />
<meta name="keywords" content="WDzone, WDZONE, Save Restricted Bot" />
<meta name="description" content="WDzone Save Restricted Bot Service." />
<meta property="og:description" content="WDzone W Save Restricted Bot.">
<title> Save Restricted Bot - By WOODcraft</title>
<link rel="icon" type="image/x-icon" href="https://i.ibb.co/k2zXMBm/Angel.jpg" type="image/x-icon" />
</head>
<body>
<center>
<img src="https://i.ibb.co/k2zXMBm/Angel.jpg" alt="Save Restricted Icon" style="width:50px;height:50px;border-radius: 100px;">
<h1 class="font-bold" id="Save Restricted">Save Restricted Bot</h1>
<p class="font-bold" id="Bot successfully">Bot successfully Running...</p>
</center>
</body>
<center>
<img src="https://raw.githubusercontent.com/SudoR2spr/SudoR2spr/main/Premium-icon/cube_chrome-op.webp" height="200" width="200" style="border-radius: 12px;"/>
<br>
<a href="https://t.me/Opleech_WD/" target="_blank"><img align="center" src="https://raw.githubusercontent.com/SudoR2spr/SudoR2spr/main/assets/angel-op/Star.gif" alt="Star" height="200" width="200" /></a>
</p>
</center>
<br>
<footer class="bg-blue-500 font-bold text-white text-center py-3 mt-5">
<center>
Powered By <a href="https://t.me/Opleech_WD" target="_blank"> 𝐖𝐎𝐎𝐃𝐜𝐫𝐚𝐟𝐭</a>
<div class="footer__copyright">
<p class="footer__copyright-info">
© 2024 Save Restricted Bot. All rights reserved.
</p></center>
</div>
</footer>
<style>
body {
background: antiquewhite;
}
</style>"""
if __name__ == "__main__":
port = int(os.environ.get("PORT", 3000))
app.run(host='0.0.0.0', port=port)