You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
isso/isso/templates/login.mako

40 lines
857 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<%inherit file="base.mako"/>
<%block name="title">
Isso Login
</%block>
<%block name="style">
#login {
margin: 280px 270px 0 270px;
padding: 30px;
background-color: rgb(245, 245, 245);
box-shadow: 0px 0px 4px 0px;
border-radius: 8px;
text-align: center;
}
.button {
border: 1px solid #006;
margin-left: 2px;
padding: 2px 4px 2px 4px;
}
#login input {
margin-top: 8px;
text-align: center;
}
#login input:-moz-placeholder, #login input::-webkit-input-placeholder {} {
color: #CCC;
}
</%block>
<!-- login form -->
<div id="login">
<form action="/" method="post">
<input name="secret" placeholder="secret" type="password" />
<input type="submit" name="submit" value="Login" class="button" />
</form>
</div>