2022-08-14 21:40:57 +00:00
|
|
|
{{define "title"}}My Dashboard{{end}}
|
2022-08-10 05:10:47 +00:00
|
|
|
{{define "content"}}
|
|
|
|
<div class="container">
|
|
|
|
<section class="hero is-info is-bold">
|
|
|
|
<div class="hero-body">
|
|
|
|
<div class="container">
|
|
|
|
<h1 class="title">User Dashboard</h1>
|
|
|
|
<h2 class="subtitle">to your account</h2>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<div class="block p-4">
|
|
|
|
<div class="columns">
|
|
|
|
<div class="column">
|
2022-08-13 22:39:31 +00:00
|
|
|
<!-- Onboarding Checklist -->
|
|
|
|
{{if or (not .CurrentUser.Certified) (not .CurrentUser.ProfilePhoto.ID)}}
|
|
|
|
<div class="card block">
|
|
|
|
<header class="card-header has-background-danger">
|
|
|
|
<p class="card-header-title has-text-light">
|
|
|
|
<span class="icon"><i class="fa fa-check"></i></span>
|
|
|
|
<span>Onboarding Checklist</span>
|
|
|
|
</p>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<div class="card-content">
|
|
|
|
<p class="block">
|
|
|
|
You're almost there! Please review the following checklist items to gain
|
|
|
|
full access to this website. Members are expected to have a face picture
|
|
|
|
as their default Profile Pic and upload a Verification Photo to become
|
|
|
|
certified as being a real person.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<ul class="menu-list block">
|
|
|
|
<li>
|
|
|
|
<a href="/photo/upload?intent=profile_pic">
|
|
|
|
{{if .CurrentUser.ProfilePhoto.ID}}
|
|
|
|
<span class="icon"><i class="fa fa-circle-check has-text-success"></i></span>
|
|
|
|
{{else}}
|
|
|
|
<span class="icon"><i class="fa fa-circle has-text-danger"></i></span>
|
|
|
|
{{end}}
|
|
|
|
<span>
|
|
|
|
Add a Profile Picture
|
|
|
|
{{if not .CurrentUser.ProfilePhoto.ID}}
|
|
|
|
<span class="icon"><i class="fa fa-external-link"></i></span>
|
|
|
|
{{end}}
|
|
|
|
</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li>
|
|
|
|
<a href="/photo/certification">
|
|
|
|
{{if .CurrentUser.Certified}}
|
|
|
|
<span class="icon"><i class="fa fa-circle-check has-text-success"></i></span>
|
|
|
|
{{else}}
|
|
|
|
<span class="icon"><i class="fa fa-circle has-text-danger"></i></span>
|
|
|
|
{{end}}
|
|
|
|
<span>
|
|
|
|
Get certified by uploading a verification selfie
|
|
|
|
{{if not .CurrentUser.Certified}}
|
|
|
|
<span class="icon"><i class="fa fa-external-link"></i></span>
|
|
|
|
{{end}}
|
|
|
|
</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
|
|
|
|
<div class="card block">
|
2022-08-10 05:10:47 +00:00
|
|
|
<header class="card-header has-background-link">
|
|
|
|
<p class="card-header-title has-text-light">My Account</p>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<div class="card-content">
|
|
|
|
<ul class="menu-list">
|
2022-08-13 06:11:36 +00:00
|
|
|
<li>
|
|
|
|
<a href="/u/{{.CurrentUser.Username}}">
|
|
|
|
<span class="icon"><i class="fa fa-user"></i></span>
|
|
|
|
My Profile
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a href="/photo/u/{{.CurrentUser.Username}}">
|
|
|
|
<span class="icon"><i class="fa fa-image"></i></span>
|
|
|
|
My Photos
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a href="/photo/upload">
|
|
|
|
<span class="icon"><i class="fa fa-upload"></i></span>
|
|
|
|
Upload Photos
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a href="/settings">
|
|
|
|
<span class="icon"><i class="fa fa-edit"></i></span>
|
|
|
|
Edit Profile & Settings
|
|
|
|
</a>
|
|
|
|
</li>
|
2022-08-14 00:42:42 +00:00
|
|
|
<li>
|
|
|
|
<a href="/photo/certification">
|
|
|
|
<span class="icon"><i class="fa fa-certificate"></i></span>
|
|
|
|
Certification Photo
|
|
|
|
</a>
|
|
|
|
</li>
|
2022-08-15 00:45:55 +00:00
|
|
|
<li>
|
|
|
|
<a href="/users/blocked">
|
|
|
|
<span class="icon"><i class="fa fa-hand"></i></span>
|
|
|
|
Blocked Users
|
|
|
|
</a>
|
|
|
|
</li>
|
2022-08-13 06:11:36 +00:00
|
|
|
<li>
|
|
|
|
<a href="/logout">
|
|
|
|
<span class="icon"><i class="fa fa-arrow-right-from-bracket"></i></span>
|
|
|
|
Log out
|
|
|
|
</a>
|
|
|
|
</li>
|
2022-08-14 23:27:57 +00:00
|
|
|
{{if .SessionImpersonated}}
|
|
|
|
<li>
|
|
|
|
<a href="/admin/unimpersonate" class="has-text-danger">
|
|
|
|
<span class="icon"><i class="fa fa-ghost"></i></span>
|
|
|
|
<span>Unimpersonate</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{{end}}
|
2022-08-13 06:11:36 +00:00
|
|
|
<li>
|
|
|
|
<a href="/account/delete">
|
|
|
|
<span class="icon"><i class="fa fa-trash"></i></span>
|
|
|
|
Delete account
|
|
|
|
</a>
|
|
|
|
</li>
|
2022-08-10 05:10:47 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="column">
|
|
|
|
<div class="card">
|
|
|
|
<header class="card-header has-background-warning">
|
|
|
|
<p class="card-header-title">Notifications</p>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<div class="card-content">
|
|
|
|
TBD.
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|