diff --git a/css/logincss b/css/logincss new file mode 100644 index 0000000..d8719fc --- /dev/null +++ b/css/logincss @@ -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; +} diff --git a/index.html b/index.html index 3c3c40b..3d9f2a7 100644 --- a/index.html +++ b/index.html @@ -36,7 +36,7 @@
  • Campaigns
  • Influencers
  • Get Started
  • -
  • Log In
  • +
  • Log In
  • @@ -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.

    + diff --git a/js/loginjss b/js/loginjss new file mode 100644 index 0000000..043e311 --- /dev/null +++ b/js/loginjss @@ -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(); + }); diff --git a/login.html b/login.html new file mode 100644 index 0000000..cb9cd91 --- /dev/null +++ b/login.html @@ -0,0 +1,21 @@ + + +
    +
    +

    Dashboard

    + + + + + +
    Sign In
    + +
    Sign Up
    + +
    + +
    + +

    Forgot your password? Click Here!

    + +