mirror of
https://github.com/pierre42100/ComunicWeb
synced 2025-06-19 04:15:17 +00:00
Progress on login page
This commit is contained in:
118
assets/templates/pages/login/loginPage.json
Normal file
118
assets/templates/pages/login/loginPage.json
Normal 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"
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
37
assets/templates/pages/login/loginPage.tpl
Normal file
37
assets/templates/pages/login/loginPage.tpl
Normal 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 -->
|
||||
|
Reference in New Issue
Block a user