blob: e0c835440bf5a443a6555fcc1a9e673dce4f41d4 (
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
|
<div class="col-md-10">
<h1>%title%</h1>
%greeting%
<form action="%link%&action=send" method="post">
<table class="table">
<thead>
<tr>
<th>%new_label%</th>
<th>%date_label%</th>
<th>%from_label%</th>
<th>%to_label%</th>
<th>%text_label%</th>
<th> </th>
</tr>
</thead>
<tbody>
%messages%
<tr>
<td> </td>
<td>%date%</td>
<td>%from%</td>
<td>%to_select%</td>
<td><textarea class="form-control" name="text"></textarea></td>
<td><input class="btn btn-primary" type="submit" name="submit" value="%submit_label%" /></td>
</tr>
</tbody>
</table>
</form>
</div>
|