|
|
- {% extends "base.html" %}
- {% load compress humanize staticfiles hc_extras %}
-
- {% block title %}Notification Channels - healthchecks.io{% endblock %}
-
-
- {% block content %}
- <div class="row">
- <div class="col-sm-12">
- <h1>Email</h1>
-
- <p>Get an email message when check goes up or down.</p>
-
- <p>
- <strong>Tip:</strong>
- Add multiple email addresses, to notify multiple team members.
- </p>
-
- <p>
- <strong>Confirmation needed.</strong>
- After entering an email address, healthchecks.io will send out a confirmation link.
- Only confirmed addresses will receive notifications.
- </p>
-
- <h2>Integration Settings</h2>
-
- <form method="post" class="form-horizontal" action="{% url 'hc-add-channel' %}">
- {% csrf_token %}
- <input type="hidden" name="kind" value="email" />
- <div class="form-group">
- <label for="inputEmail3" class="col-sm-2 control-label">Email</label>
- <div class="col-sm-3">
- <input type="email" class="form-control" name="value" placeholder="[email protected]">
- </div>
- </div>
- <div class="form-group">
- <div class="col-sm-offset-2 col-sm-10">
- <button type="submit" class="btn btn-primary">Save Integration</button>
- </div>
- </div>
- </form>
- </div>
-
-
-
- </div>
- </div>
-
-
- {% endblock %}
-
- {% block scripts %}
- {% compress js %}
- <script src="{% static 'js/jquery-2.1.4.min.js' %}"></script>
- <script src="{% static 'js/bootstrap.min.js' %}"></script>
- {% endcompress %}
- {% endblock %}
|