blob: 1b4fa1e56f630778d4efbb27b6b34462cb7ed804 (
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
|
{INCLUDE layout/header.loggedin.html}
<div class="panel-heading">Your account information</div>
<div class="panel-body">
{FOR M IN ERRORS}
<div class="alert alert-danger">
{M}<br>
</div>
{END FOR}
{FOR M IN MESSAGES}
<div class="alert alert-info">
{M}<br>
</div>
{END FOR}
<form method="post" action="/nickserv/info">
<table id="tableInfo" class="table table-hover">
<tbody>
<tr>
<td>Account:</td>
<td>{DISPLAY}</td>
</tr>
{IF EXISTS EMAIL}
<tr>
<td>E-mail:</td>
<td>{EMAIL}</td>
</tr>
{END IF}
<tr>
<td>Time registered:</td>
<td>{TIME_REGISTERED}</td>
</tr>
{IF EXISTS VHOST}
<tr>
<td>Vhost:</td>
<td>{VHOST}</td>
</tr>
{END IF}
<tr>
<td>Greet:</td>
<td><input name="greet" value="{GREET}" class="form-control input-sm"></td>
</tr>
<tr>
<td>Auto op:</td>
<td><input type="checkbox" name="autoop" value="on" {IF EXISTS AUTOOP}checked{END IF}></td>
</tr>
<tr>
<td>Private:</td>
<td><input type="checkbox" name="private" value="on" {IF EXISTS PRIVATE}checked{END IF}></td>
</tr>
<tr>
<td>Kill:</td>
<td>
<select name="kill" class="form-control input-sm">
<option value="on" {IF EXISTS KILL_ON}selected{END IF}>On</option>
<option value="quick" {IF EXISTS KILL_QUICK}selected{END IF}>Quick</option>
<option value="off" {IF EXISTS KILL_OFF}selected{END IF}>Off</option>
</select>
</td>
</tr>
</tbody>
</table>
<div class="text-center">
<button type="submit" class="btn btn-lg btn-primary">Save</button>
</div>
</form>
</div>
{INCLUDE layout/footer.loggedin.html}
|