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>
|
<!DOCTYPE html>
|
||||||
body {
|
<html lang="en">
|
||||||
background-color: #0073b7; /* Mailcow Blue */
|
<head>
|
||||||
color: white;
|
<meta charset="UTF-8">
|
||||||
font-family: Arial, sans-serif;
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
}
|
<title>Mailcow Temp Mail</title>
|
||||||
input, button {
|
<style>
|
||||||
border-radius: 5px;
|
body {
|
||||||
padding: 10px;
|
background-color: #0073b7; /* Mailcow Blue */
|
||||||
margin: 5px;
|
color: white;
|
||||||
}
|
font-family: Arial, sans-serif;
|
||||||
button {
|
width: 250px;
|
||||||
background-color: #005f8c;
|
text-align: center;
|
||||||
color: white;
|
}
|
||||||
border: none;
|
input, button {
|
||||||
}
|
width: 80%;
|
||||||
button:hover {
|
border-radius: 5px;
|
||||||
background-color: #004f74;
|
padding: 10px;
|
||||||
}
|
margin: 5px;
|
||||||
</style>
|
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