mirror of
https://github.com/ramvignesh-b/pi-ku.git
synced 2026-05-04 18:39:46 +00:00
6cf24731ce
* feat: add template based email content (html + plaintext fallback) * feat: init saajan component * feat: add aesthetic noise background and implement Saajan component in register and login * feat: add post seal modal for vault * refactor: add proper props interfaces * refactor: expose props on ui components * feat: add ssajan in lots of flows * fix: remove render test with no value and add aria helper for btn identification * refactor: update email notification to account for proper arguments * refactor: refactor E2E auth helper and mail parsing logic --------- Co-authored-by: ramvignesh-b <ramvignesh-b@github.com>
22 lines
584 B
HTML
22 lines
584 B
HTML
{% extends 'email/base.html' %}
|
|
|
|
{% block content %}
|
|
<div style="padding: 15px; font-style: italic">
|
|
<p>{{ pen_name }},</p>
|
|
<p>
|
|
Your destination is one train away.
|
|
</p>
|
|
<p>I've been keeping a place for your words.<br/>
|
|
Come when you're ready.</p>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block footnote %}
|
|
This link expires in 24 hours.<br/>
|
|
I'm patient, but not endlessly so.
|
|
{% endblock %}
|
|
|
|
{% block footer %}
|
|
Didn't write to me? Then someone else did.<br/>
|
|
Ignore this. I'll forget you were ever here.
|
|
{% endblock %} |