Progress on login page

This commit is contained in:
Pierre
2017-02-21 12:37:26 +01:00
parent 7ead57ce24
commit 59004555ec
7 changed files with 338 additions and 14 deletions

View File

@ -0,0 +1,118 @@
{
"1":{
"nodeType": "div",
"class": "login-box",
"children":{
"0":{
"nodeType": "div",
"class": "login-logo",
"children": {
"0":{
"nodeType": "a",
"href": "#",
"innerHTML": "<b>Comunic</b>"
}
}
},
"1":{
"nodeType": "div",
"class": "login-box-body",
"children":{
"0":{
"nodeType": "p",
"class": "login-box-msg",
"innerHTML": "Login to your Comunic account."
},
"1":{
"nodeType": "form",
"children":{
"0":{
"nodeType": "div",
"class": "form-group has-feedback",
"children":{
"0":{
"nodeType": "input",
"type": "email",
"class": "form-control",
"placeholder": "Email",
"id": "account-email"
},
"1":{
"nodeType": "span",
"class": "glyphicon glyphicon-envelope form-control-feedback"
}
}
},
"1":{
"nodeType": "div",
"class": "form-group has-feedback",
"children":{
"0":{
"nodeType": "input",
"type": "password",
"class": "form-control",
"placeholder": "Password",
"id": "account-password"
},
"1":{
"nodeType": "span",
"class": "glyphicon glyphicon-lock form-control-feedback"
}
}
},
"2":{
"nodeType": "div",
"class": "row",
"children":{
"0":{
"nodeType": "div",
"class": "col-xs-8",
"children":{
"0":{
"nodeType": "div",
"class": "checkbox icheck",
"children":{
"0":{
"nodeType": "label",
"children":{
"0":{
"nodeType": "input",
"type": "checkbox",
"id": "permanentLogin"
},
"1":{
"nodeType": "text",
"innerHTML": " Remember me"
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}

View File

@ -0,0 +1,37 @@
<div class="login-box">
<div class="login-logo">
<a href="../../index2.html"><b>Comunic</b></a>
</div>
<!-- /.login-logo -->
<div class="login-box-body">
<p class="login-box-msg">Login to your Comunic account.</p>
<form>
<div class="form-group has-feedback">
<input type="email" class="form-control" placeholder="Email" />
<span class="glyphicon glyphicon-envelope form-control-feedback"></span>
</div>
<div class="form-group has-feedback">
<input type="password" class="form-control" placeholder="Password" />
<span class="glyphicon glyphicon-lock form-control-feedback"></span>
</div>
<div class="row">
<div class="col-xs-8">
<div class="checkbox icheck">
<label>
<input type="checkbox" /> Remember Me
</label>
</div>
</div>
<!-- /.col -->
<div class="col-xs-4">
<button type="submit" class="btn btn-primary btn-block btn-flat">Sign In</button>
</div>
<!-- /.col -->
</div>
</form>
</div>
<!-- /.login-box-body -->
</div>
<!-- /.login-box -->