mirror of
https://github.com/simple-login/app.git
synced 2025-02-23 23:34:05 +08:00
prettify mailbox detail page
This commit is contained in:
parent
3ef7285288
commit
3be593ed09
2 changed files with 2 additions and 1 deletions
|
@ -81,7 +81,7 @@
|
|||
<div class="form-group">
|
||||
<label class="form-label">PGP Public Key</label>
|
||||
|
||||
<textarea name="pgp" class="form-control" rows=10>{{mailbox.pgp_public_key or ""}}</textarea>
|
||||
<textarea name="pgp" class="form-control" rows=10 placeholder="-----BEGIN PGP PUBLIC KEY BLOCK-----">{{mailbox.pgp_public_key or ""}}</textarea>
|
||||
</div>
|
||||
|
||||
<button class="btn btn-primary" name="action" value="save">Save</button>
|
||||
|
|
|
@ -131,6 +131,7 @@ def fake_data():
|
|||
activated=True,
|
||||
is_admin=True,
|
||||
otp_secret="base32secret3232",
|
||||
can_use_pgp=True
|
||||
)
|
||||
db.session.commit()
|
||||
|
||||
|
|
Loading…
Reference in a new issue