Olivier-Truong
commited on
Commit
•
d7f1e10
1
Parent(s):
2f4ae08
Upload 2 files
Browse files- html_css_js/cloud-computing.png +0 -0
- html_css_js/login.html +75 -0
html_css_js/cloud-computing.png
ADDED
html_css_js/login.html
ADDED
@@ -0,0 +1,75 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html>
|
3 |
+
<head>
|
4 |
+
<meta charset="utf-8">
|
5 |
+
<title>Login - Secure Messaging by [Glz_SQL]</title>
|
6 |
+
<style>
|
7 |
+
body {
|
8 |
+
font-family: Arial, sans-serif;
|
9 |
+
background-color: #f0f0f0;
|
10 |
+
}
|
11 |
+
|
12 |
+
.login-container {
|
13 |
+
width: 500px;
|
14 |
+
height: 400px;
|
15 |
+
margin: 100px auto;
|
16 |
+
padding: 40px;
|
17 |
+
background-color: #ffffff;
|
18 |
+
border-radius: 10px;
|
19 |
+
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
|
20 |
+
}
|
21 |
+
|
22 |
+
.login-container h1 {
|
23 |
+
text-align: center;
|
24 |
+
color: #3498db;
|
25 |
+
}
|
26 |
+
|
27 |
+
.input-group {
|
28 |
+
margin-bottom: 30px;
|
29 |
+
}
|
30 |
+
|
31 |
+
.input-group label {
|
32 |
+
display: block;
|
33 |
+
margin-bottom: 5px;
|
34 |
+
font-weight: bold;
|
35 |
+
}
|
36 |
+
|
37 |
+
.input-group input {
|
38 |
+
width: 90%;
|
39 |
+
padding: 20px;
|
40 |
+
border: 1px solid #ccc;
|
41 |
+
border-radius: 5px;
|
42 |
+
}
|
43 |
+
|
44 |
+
.login-btn {
|
45 |
+
width: 100%;
|
46 |
+
padding: 20px;
|
47 |
+
background-color: #3498db;
|
48 |
+
color: #ffffff;
|
49 |
+
border: none;
|
50 |
+
border-radius: 5px;
|
51 |
+
cursor: pointer;
|
52 |
+
}
|
53 |
+
|
54 |
+
.login-btn:hover {
|
55 |
+
background-color: #20efbb;
|
56 |
+
}
|
57 |
+
</style>
|
58 |
+
</head>
|
59 |
+
<body>
|
60 |
+
<div class="login-container">
|
61 |
+
<h1>Login</h1>
|
62 |
+
<form id="login-form" method='post'>
|
63 |
+
<div class="input-group">
|
64 |
+
<label for="username">Username</label>
|
65 |
+
<input type="text" id="username" name="username" required>
|
66 |
+
</div>
|
67 |
+
<div class="input-group">
|
68 |
+
<label for="password">Password</label>
|
69 |
+
<input type="password" id="password" name="password" required>
|
70 |
+
</div>
|
71 |
+
<button class="login-btn" type="submit">Login</button>
|
72 |
+
</form>
|
73 |
+
</div>
|
74 |
+
</body>
|
75 |
+
</html>
|