-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (31 loc) · 1.32 KB
/
index.html
File metadata and controls
40 lines (31 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Doom Predictor - Login</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
<link href="index.css" rel="stylesheet">
</head>
<body>
<div class="container">
<h1>Welcome to Doom Predictor</h1>
<h3>Strictly 5k USDT Withdrawal per day</h3>
<div class="input-group">
<input type="text" id="username" placeholder="Username" maxlength="12">
</div>
<div class="input-group">
<input type="password" id="password" placeholder="Password" maxlength="18">
</div>
<button class="btn" onclick="validateLogin()">Sign In</button>
<p id="error-message" class="error"></p>
<p class="warning">Use at your own risk with caution!</p>
<p class="info">
<b>Programming Language Used:</b> Python<br>
<b>Modules:</b> TensorFlow, PyTorch, Scikit-learn, Pandas, NumPy, Flask, FastAPI, NLTK, spaCy
</p><br>
<button class="btn" onclick="window.location.href='buy.html'">Buy an Account</button>
</div>
<script src="index.js"></script>
</body>
</html>