Pracownia.Programowania/templates/login.html

97 lines
2.0 KiB
HTML
Raw Permalink Normal View History

2019-03-06 20:06:19 +01:00
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="Stylesheet" href="style.css">
<title>Document</title>
<style>
body{
background-color: rgb(197, 207, 224);
}
#panel {
width: 400px;
margin: 0 auto;
padding: 15px 0 0;
background: rgb(169, 176, 187);
border: 1px solid silver;
font: 16px calibri;
letter-spacing: -1px;
-webkit-box-shadow: 0 0 2px silver;
-moz-box-shadow: 0 0 2px silver;
box-shadow: 0 0 2px silver;
}
form {
margin: 0;
}
input {
display: block;
width: 260px;
padding: 10px 20px;
color: #696969;
font-size: 16px;
text-shadow: 0 0 1px silver;
}
#username, #password {
display: block;
width: 360px;
margin: 0 auto;
padding: 10px 5px;
border: 1px solid silver;
outline: 5px solid #ebebeb;
font-size: 22px;
}
#username:focus, #password:focus {
outline: 5px solid #e5f2f8;
}
input[type="submit"] {
width: 70px;
padding: 5px 13px;
border: 1px solid #005f85;
color: white;
text-shadow: 0 0 1px black;
background: #98c9dc;
position: static;
left: 180px;
}
#panel, input[type="submit"] {
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
.sig {
display: block;
width: 260px;
padding: 10px 20px;
color: #696969;
font-size: 32px;
text-shadow: 0 0 1px silver;
text-decoration: none;
}
a:link { color: #696; text-decoration: none; background-color: transparent }
a:visited { color: rgb(29, 29, 39); text-decoration: none; background-color: transparent }
a:hover { color: rgb(70, 110, 155); text-decoration: none; background-color: transparent }
a:active { color: #900; text-decoration: underline; background-color: transparent }
</style>
</head>
<body c red;>
<div id="panel">
<h1>LOGIN</h1>
<form method="post">
<input type="text" name="username" placeholder="email">
<input type="password" name="password" placeholder="password">
<input type="submit">
</form>
<h2><span class="sig"><a href="/signup">Zarejestruj Się</a></span></h2>
</body>
</div>
</html>