reminder-bot/templates/support/create_reminder.html.tera

41 lines
1.3 KiB
Plaintext
Raw Normal View History

2022-03-20 21:04:24 +00:00
{% extends "base" %}
{% block init %}
{% set title = "Support" %}
2022-03-20 21:41:38 +00:00
{% set page_title = "Create Reminders" %}
{% set page_subtitle = "" %}
2022-03-20 21:04:24 +00:00
{% endblock %}
{% block content %}
<section class="hero is-small">
<div class="hero-body">
<div class="container">
<p class="title">Create reminders via commands</p>
<p class="content">
You can create reminders with the <code>/remind</code> command.
<br>
Fill out the "time" and "content" fields. If you wish, press on "Optional" to view other options
for the reminder.
</p>
</div>
</div>
</section>
<section class="hero is-small">
<div class="hero-body">
<div class="container">
<p class="title">Create reminders via the dashboard</p>
<p class="content">
2022-12-18 13:09:02 +00:00
Reminders can also be created on the dashboard. The dashboard offers more options for configuring
reminders, and offers templates for quick recreation of reminders.
<a href="/dashboard">Access the dashboard.</a>
2022-03-20 21:04:24 +00:00
</p>
</div>
</div>
</section>
{% endblock %}