forked from newscoop/theme-GlobalNews
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauth_password-restore-finish.tpl
64 lines (54 loc) · 3.28 KB
/
auth_password-restore-finish.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{{ config_load file="{{ $gimme->language->english_name }}.conf" }}
{{ include "_tpl/_html-head.tpl" }}
<body>
{{ include "_tpl/responsive-menu.tpl"}}
<div id="main-container" class="snap-content overthrow">
<div class="container">
{{ include "_tpl/header.tpl" }}
<main id="main">
<div class="row">
<div class="col-lg-8 col-md-8">
<h1 class="page-title">{{ #resetPassword# }}</h1>
<div id="content" class="auth-page">
<div class="globalnews-form well">
<form action="{{ $form->getAction() }}" class="zend_form" method="{{ $form->getMethod() }}">
<fieldset>
{{ if $form->isErrors() }}
<div class="alert alert-error">
<p>{{ #yourPasswordCouldNotBeChanged# }}</p>
</div>
{{ /if }}
</fieldset>
<fieldset class="fixBackground background-block login">
<dl>
{{ $form->password->setLabel("Neues Passwort")->removeDecorator('Errors') }}
{{ if $form->password->hasErrors() }}
<dt class="info-block"> </dt>
<dd class="info-block">
<span class="alert alert-danger">{{ #pleaseEnterYourNewPassword# }}</span>
</dd>
{{ /if }}
</dl>
<dl>
{{ $form->password_confirm->setLabel("Retype your password")->removeDecorator('Errors') }}
{{ if $form->password_confirm->hasErrors() && !$form->password->hasErrors() }}
<dt class="info-block"> </dt>
<dd class="info-block">
<span class="alert alert-danger">{{ #theConfirmationPasswordDoesNotMatch# }}</span>
</dd>
{{ /if }}
</dl>
<div class="form-buttons right">
<input type="submit" id="submit" class="solid-button" value="{{ #savePassword# }}" />
</div>
</fieldset>
</form>
</div>
</div>
<!-- End Content -->
</div>
{{ include "_tpl/sidebar-community.tpl" }}
</div>
</main>
{{ include "_tpl/footer.tpl" }}
{{ include "_tpl/_html-footer.tpl" }}