Upload source-code-viewer (4).txt
Browse files- source-code-viewer (4).txt +37 -0
source-code-viewer (4).txt
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
<!DOCTYPE html>
|
3 |
+
<html lang="en">
|
4 |
+
|
5 |
+
<head>
|
6 |
+
<meta charset="UTF-8">
|
7 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
8 |
+
<title>Login</title>
|
9 |
+
<link rel="shortcut icon" href="../public/img/Fav/favicon.ico" type="image/x-icon">
|
10 |
+
<link rel="preconnect" href="https://fonts.googleapis.com">
|
11 |
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
12 |
+
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;600;700;900&display=swap" rel="stylesheet">
|
13 |
+
<!-- Boxicons -->
|
14 |
+
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
|
15 |
+
<!-- My CSS -->
|
16 |
+
<link rel="stylesheet" href="./css/login.css">
|
17 |
+
</head>
|
18 |
+
|
19 |
+
<body>
|
20 |
+
|
21 |
+
<div class="login-container">
|
22 |
+
<div class="slider">
|
23 |
+
<div class="slider-text">Welcome To AM Panel</div>
|
24 |
+
</div>
|
25 |
+
<img src="./img/logo.svg" alt="Logo" class="logo">
|
26 |
+
|
27 |
+
<!-- Display error message if any -->
|
28 |
+
|
29 |
+
<form action="index.php" method="post">
|
30 |
+
<input type="text" name="mobile" placeholder="Mobile*" required><br>
|
31 |
+
<input type="password" name="password" placeholder="Password*" required><br>
|
32 |
+
<input type="submit" value="Login">
|
33 |
+
</form>
|
34 |
+
</div>
|
35 |
+
</body>
|
36 |
+
|
37 |
+
</html>
|