36 lines
1.0 KiB
Plaintext
36 lines
1.0 KiB
Plaintext
<h2 class="title is-2">Account Overview</h2>
|
|
<p>Welcome back, <strong><%= auth.get('name') %></strong>.</p>
|
|
|
|
<h3 class="title is-3 mt-5">Patreon Information</h3>
|
|
|
|
<div class="notification is-info is-light">
|
|
Please note: Patron status updates may take up to one minute to synchronize.
|
|
</div>
|
|
|
|
<p>
|
|
<strong>Role:</strong>
|
|
<% if (auth.get('patron')) { %>
|
|
Patron
|
|
<% } else { %>
|
|
Not a Patron
|
|
<a class="ml-3" target="_blank" href="https://patreon.com/cj_clippy">Become a Patron</a>
|
|
<% } %>
|
|
</p>
|
|
|
|
<p><strong>Patreon ID:</strong> <%= auth.get('patreonId') %></p>
|
|
|
|
|
|
<div class="mt-5">
|
|
<h3 class="title is-3">Account Settings</h3>
|
|
|
|
<label class="checkbox">
|
|
<input class="checkbox" type="checkbox" name="publicUsername" data-bind="publicUsername" data-on-input__debounce.300ms.leading="@patch('/api/user/settings')">
|
|
Show <%= auth.get('name') %> on the <a href="/patrons">patrons page</a>
|
|
</label>
|
|
|
|
<div id="results" class="mt-5"></div>
|
|
|
|
<!-- <br />
|
|
<input class="button" type="submit" value="Save" /> -->
|
|
|
|
</div> |