-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauthme_email.tpl
45 lines (38 loc) · 1.54 KB
/
authme_email.tpl
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
{include file='header.tpl'}
{include file='navbar.tpl'}
<div class="pr-3 pl-3 pr-md-5 pl-md-5 pt-5 pb-3">
<div class="card">
<div class="card-body">
<form action="" method="post">
<h2>{$CONNECT_WITH_AUTHME}</h2>
<hr />
{if isset($ERRORS)}
<div class="alert alert-danger">
{foreach from=$ERRORS item=error}
{$error}<br />
{/foreach}
</div>
{/if}
<div class="alert alert-info">
<p>{$AUTHME_SUCCESS}</p>
{$AUTHME_INFO}
</div>
<div class="form-group">
<label for="inputEmail">{$EMAIL}</label>
<input type="email" id="inputEmail" name="email" class="form-control" placeholder="{$EMAIL}">
</div>
{if isset($NICKNAME)}
<div class="form-group">
<label for="inputNickname">{$NICKNAME}</label>
<input type="text" id="inputNickname" name="nickname" class="form-control" placeholder="{$NICKNAME}">
</div>
{/if}
<div class="form-group">
<input type="hidden" name="token" value="{$TOKEN}">
<input type="submit" value="{$SUBMIT}" class="btn btn-primary">
</div>
</form>
</div>
</div>
</div>
{include file='footer.tpl'}