WIP PWA support

This commit is contained in:
Pablo Ferreiro 2022-11-04 17:10:51 +01:00
parent c925ca2a41
commit cba59e66c7
No known key found for this signature in database
GPG key ID: 41FBCE65B779FA24
11 changed files with 84 additions and 10 deletions

View file

@ -0,0 +1,18 @@
{embed '../form.latte', path: '/settings/misc', method: 'POST', submit: true}
{block fields}
<div class="field">
<label class="label">Enable service worker</label>
<div class="control">
<label class="radio">
<input type="radio" name="misc-sw" value="yes" n:attr="checked => $isServiceWorker" />
<span>Yes</span>
</label>
<label class="radio">
<input type="radio" name="misc-sw" value="no" n:attr="checked => !$isServiceWorker" />
<span>No</span>
</label>
</div>
<p class="help">This can be used to install the PWA version of ProxiTok</p>
</div>
{/block}
{/embed}