summaryrefslogtreecommitdiffstats
path: root/templates/new.html
blob: d0897a3029a8cd658f0d878915ee8c993e91d74a (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
$def with (form, user)

$var title: Mailinglisten
$var headline:
     Create new mailing list

<div class="create">
  <div class="header">
    <b>The rules</b>
  </div>

  <ul>
    <li>
      <b>Do not play with mailing list creation.</b>
      <br />
      Please create only those lists you really need.
      We have to delete unused lists manually.
    </li>

    <li>
      <b>No spamming!</b>
      <br />
      Never subscribe people without their explicit permission.
    </li>

    <li>
      <b>&quot;<i>fu-berlin.de</i>&quot; E-mail address</b>
      <br />
      <b>You</b> need an E-mail account at Freie Universitaet Berlin to <b>create</b> a mailing list.<br>(additional administrators and list members may have any E-Mail address)
    </li>

    <li>
      <b>List operation</b>
      <br />
      We reserve the right to reject or discontinue operation of any mailing list without giving reasons.
    </li>

    <li>
      <b>Logging</b>
      <br />
      We record the creation of mailing lists. This includes time & date of creation, E-mail address, and your Internet address.
    </li>
  </ul>
</div>

<div class="create">
  <div class="header">
    <b>Create a mailing list</b>
  </div>

  <form name="main" method="post">
    $:form.render()

    <input type="submit" value="Create" class="submit" />
  </form>
</div>

<div class="create" id="info">
  <div class="header">
    <b>Information</b>
  </div>

  <div class="center">
    The following information will be logged:<br />
    <br />
    Your internet address: <b>$user['ip']</b><br />
    Your hostname: <b>$user['host']</b><br />
  </div>
</div>