clear dashboard
This commit is contained in:
parent
c49f589911
commit
d45af93967
|
@ -248,6 +248,7 @@ services:
|
|||
volumes:
|
||||
- ./docker/kratos-selfservice-ui-node/main.hbs:/usr/src/app/views/layouts/main.hbs:ro
|
||||
- ./docker/kratos-selfservice-ui-node/login.hbs:/usr/src/app/views/login.hbs:ro
|
||||
- ./docker/kratos-selfservice-ui-node/dashboard.hbs:/usr/src/app/views/dashboard.hbs:ro
|
||||
- ./docker/kratos-selfservice-ui-node/registration.hbs:/usr/src/app/views/registration.hbs:ro
|
||||
- ./docker/kratos-selfservice-ui-node/icon_logo.hbs:/usr/src/app/views/partials/icon_logo.hbs:ro
|
||||
- ./docker/kratos-selfservice-ui-node/branding.css:/usr/src/app/public/branding.css:ro
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
<div class="content">
|
||||
{{> header}}
|
||||
<div class="container">
|
||||
<h2 class="greeting">Welcome back, <span class="user-identifier">{{session.identity.traits.email}}</span>!</h2>
|
||||
<h3>This will be your dashboard!</h3>
|
||||
<p>Right now there is nothing else here but in future, you will be able to list your pinned files, upgrade to a
|
||||
premium tiers and see your usage stats.</p>
|
||||
|
||||
<hr class="divider">
|
||||
|
||||
<p>
|
||||
<a href="https://siasky.net">Go back to siasky.net</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
Reference in New Issue