Added extra redirects and basic pages for getting between admin and user
side
This commit is contained in:
parent
30c80679be
commit
58ab852f4c
4 changed files with 75 additions and 2 deletions
25
templates/root/home.html.ep
Normal file
25
templates/root/home.html.ep
Normal file
|
@ -0,0 +1,25 @@
|
|||
% layout 'user';
|
||||
% title 'Home';
|
||||
% content_for css => begin
|
||||
<style>
|
||||
body {
|
||||
background: whitesmoke;
|
||||
padding-top: 54px;
|
||||
}
|
||||
|
||||
.panel {
|
||||
background: white;
|
||||
padding: 16px;
|
||||
-webkit-box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.2);
|
||||
-moz-box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.2);
|
||||
box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.2);
|
||||
}
|
||||
|
||||
.login-form {
|
||||
margin-top: 20%;
|
||||
}
|
||||
</style>
|
||||
% end
|
||||
% content_for javascript => begin
|
||||
% end
|
||||
<div>User Pages</div>
|
Reference in a new issue