1.5
This commit is contained in:
parent
ea2cc6e5f7
commit
00831bb0c2
1 changed files with 40 additions and 20 deletions
|
@ -1,20 +1,40 @@
|
|||
<style>
|
||||
body {
|
||||
background-color: #0073b7; /* Mailcow Blue */
|
||||
color: white;
|
||||
font-family: Arial, sans-serif;
|
||||
}
|
||||
input, button {
|
||||
border-radius: 5px;
|
||||
padding: 10px;
|
||||
margin: 5px;
|
||||
}
|
||||
button {
|
||||
background-color: #005f8c;
|
||||
color: white;
|
||||
border: none;
|
||||
}
|
||||
button:hover {
|
||||
background-color: #004f74;
|
||||
}
|
||||
</style>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Mailcow Temp Mail</title>
|
||||
<style>
|
||||
body {
|
||||
background-color: #0073b7; /* Mailcow Blue */
|
||||
color: white;
|
||||
font-family: Arial, sans-serif;
|
||||
width: 250px;
|
||||
text-align: center;
|
||||
}
|
||||
input, button {
|
||||
width: 80%;
|
||||
border-radius: 5px;
|
||||
padding: 10px;
|
||||
margin: 5px;
|
||||
border: none;
|
||||
}
|
||||
button {
|
||||
background-color: #005f8c;
|
||||
color: white;
|
||||
cursor: pointer;
|
||||
}
|
||||
button:hover {
|
||||
background-color: #004f74;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h2>Mailcow Login</h2>
|
||||
<input type="text" id="email" placeholder="Email">
|
||||
<input type="password" id="password" placeholder="Password">
|
||||
<button id="login-btn">Login</button>
|
||||
<p id="status"></p>
|
||||
<script src="popup.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Reference in a new issue