mirror of
https://github.com/Rushilwiz/brancher.git
synced 2025-04-18 02:50:18 -04:00
login rushil/zeem
This commit is contained in:
parent
b478580c31
commit
22ace85f94
90
css/logincss
Normal file
90
css/logincss
Normal file
|
@ -0,0 +1,90 @@
|
|||
body{
|
||||
font-family: 'Open Sans', sans-serif;
|
||||
background:#3498db;
|
||||
margin: 0 auto 0 auto;
|
||||
width:100%;
|
||||
text-align:center;
|
||||
margin: 20px 0px 20px 0px;
|
||||
}
|
||||
|
||||
p{
|
||||
font-size:12px;
|
||||
text-decoration: none;
|
||||
color:#ffffff;
|
||||
}
|
||||
|
||||
h1{
|
||||
font-size:1.5em;
|
||||
color:#525252;
|
||||
}
|
||||
|
||||
.box{
|
||||
background:white;
|
||||
width:300px;
|
||||
border-radius:6px;
|
||||
margin: 0 auto 0 auto;
|
||||
padding:0px 0px 70px 0px;
|
||||
border: #2980b9 4px solid;
|
||||
}
|
||||
|
||||
.email{
|
||||
background:#ecf0f1;
|
||||
border: #ccc 1px solid;
|
||||
border-bottom: #ccc 2px solid;
|
||||
padding: 8px;
|
||||
width:250px;
|
||||
color:#AAAAAA;
|
||||
margin-top:10px;
|
||||
font-size:1em;
|
||||
border-radius:4px;
|
||||
}
|
||||
|
||||
.password{
|
||||
border-radius:4px;
|
||||
background:#ecf0f1;
|
||||
border: #ccc 1px solid;
|
||||
padding: 8px;
|
||||
width:250px;
|
||||
font-size:1em;
|
||||
}
|
||||
|
||||
.btn{
|
||||
background:#2ecc71;
|
||||
width:125px;
|
||||
padding-top:5px;
|
||||
padding-bottom:5px;
|
||||
color:white;
|
||||
border-radius:4px;
|
||||
border: #27ae60 1px solid;
|
||||
|
||||
margin-top:20px;
|
||||
margin-bottom:20px;
|
||||
float:left;
|
||||
margin-left:16px;
|
||||
font-weight:800;
|
||||
font-size:0.8em;
|
||||
}
|
||||
|
||||
.btn:hover{
|
||||
background:#2CC06B;
|
||||
}
|
||||
|
||||
#btn2{
|
||||
float:left;
|
||||
background:#3498db;
|
||||
width:125px; padding-top:5px;
|
||||
padding-bottom:5px;
|
||||
color:white;
|
||||
border-radius:4px;
|
||||
border: #2980b9 1px solid;
|
||||
|
||||
margin-top:20px;
|
||||
margin-bottom:20px;
|
||||
margin-left:10px;
|
||||
font-weight:800;
|
||||
font-size:0.8em;
|
||||
}
|
||||
|
||||
#btn2:hover{
|
||||
background:#3594D2;
|
||||
}
|
|
@ -36,7 +36,7 @@
|
|||
<li><a href="#">Campaigns</a></li>
|
||||
<li><a href="#">Influencers</a></li>
|
||||
<li><a href=".sec01">Get Started</a></li>
|
||||
<li><a href=".sec02">Log In</a></li>
|
||||
<li><a href="link">Log In</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
|
@ -73,6 +73,7 @@
|
|||
est ab in earum ratione eveniet soluta molestiae sed illo nostrum nemo debitis. Minus, quod totam aliquam ea asperiores fugit quaerat excepturi dolores ratione numquam consequatur id unde alias provident vero incidunt exercitationem similique consequuntur
|
||||
hic possimus? Fuga, eveniet quaerat inventore corporis laborum eligendi enim soluta obcaecati aliquid veritatis provident amet laudantium est quisquam dolore exercitationem modi? Distinctio, pariatur, ab velit praesentium vitae quidem consequatur
|
||||
deleniti recusandae odit officiis. Quidem, cupiditate.</p>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
|
25
js/loginjss
Normal file
25
js/loginjss
Normal file
|
@ -0,0 +1,25 @@
|
|||
function field_focus(field, email)
|
||||
{
|
||||
if(field.value == email)
|
||||
{
|
||||
field.value = '';
|
||||
}
|
||||
}
|
||||
|
||||
function field_blur(field, email)
|
||||
{
|
||||
if(field.value == '')
|
||||
{
|
||||
field.value = email;
|
||||
}
|
||||
}
|
||||
|
||||
//Fade in dashboard box
|
||||
$(document).ready(function(){
|
||||
$('.box').hide().fadeIn(1000);
|
||||
});
|
||||
|
||||
//Stop click event
|
||||
$('a').click(function(event){
|
||||
event.preventDefault();
|
||||
});
|
21
login.html
Normal file
21
login.html
Normal file
|
@ -0,0 +1,21 @@
|
|||
<link "href"='https://fonts.googleapis.com/css?family=Open+Sans:700,600' "rel"='stylesheet' type='css/logincss'>
|
||||
|
||||
<form method="post" action="login.html">
|
||||
<div class="box">
|
||||
<h1>Dashboard</h1>
|
||||
|
||||
<input type="email" name="email" value="email" onFocus="field_focus(this, 'email');" onblur="field_blur(this, 'email');" class="email" />
|
||||
|
||||
<input type="password" name="email" value="email" onFocus="field_focus(this, 'email');" onblur="field_blur(this, 'email');" class="email" />
|
||||
|
||||
<a href="#"><div class="btn">Sign In</div></a> <!-- End Btn -->
|
||||
|
||||
<a href="#"><div id="btn2">Sign Up</div></a> <!-- End Btn2 -->
|
||||
|
||||
</div> <!-- End Box -->
|
||||
|
||||
</form>
|
||||
|
||||
<p>Forgot your password? <u style="color:#f1c40f;">Click Here!</u></p>
|
||||
|
||||
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js" type="text/javascript"></script>
|
Loading…
Reference in New Issue
Block a user