blob: ecaed37caaf28ba21223bff71105a8b6ed8a1d4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
[% title = loc('Local RSS feeds and email alerts') %]
[% INCLUDE 'header.html', title => title %]
[% INCLUDE 'errors.html' %]
<p><a href="[% c.uri_for( '/rss', problem_id ) %]">
<img src="/i/feed.png" width="16" height="16" title="[% loc('RSS feed') %]" alt="[% loc('RSS feed of updates to this problem' ) %]" border="0" style="float:right">
</a>
</p>
<p>
[% loc('Receive email when updates are left on this problem.') %]
</p>
<form action="/alert/subscribe" method="post">
<fieldset>
<label class="hidden n" for="alert_rznvy">[% loc('Your email') %]</label>
<div class="form-txt-submit-box">
<input type="email" name="rznvy" id="alert_rznvy" value="[% email | html %]" placeholder="[% loc('Your email') %]">
<input class="green-btn" type="submit" value="[% loc('Subscribe') %]">
</div>
<input type="hidden" name="token" value="[% csrf_token %]">
<input type="hidden" name="id" value="[% problem_id | html %]">
<input type="hidden" name="type" value="updates">
</fieldset>
</form>
[% INCLUDE 'footer.html' %]
|