commit | author | age
|
90d4d7
|
1 |
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> |
PH |
2 |
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> |
|
3 |
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> |
|
4 |
<fmt:setBundle basename="de.jalin.ldapadmin.login"/> |
|
5 |
<!DOCTYPE html> |
|
6 |
<html lang="{language}"> |
|
7 |
<jsp:include page="template/header.jsp"/> |
|
8 |
<body> |
|
9 |
<jsp:include page="template/navbar.jsp"/> |
|
10 |
<c:url var="formaction" value="/passwordreset" /> |
|
11 |
<div class="container"> |
|
12 |
<h1 class="col-sm-offset-3"><fmt:message key="password.reset.title"/></h1> |
94fd04
|
13 |
</br> |
90d4d7
|
14 |
<c:if test="${ not empty errormessage }"> |
PH |
15 |
<div class="alert alert-error col-sm-offset-3"> |
|
16 |
<a class="close" data-dismiss="alert">×</a> |
|
17 |
<strong><fmt:message key="password.error.title"/></strong> ${errormessage} |
|
18 |
</div> |
|
19 |
</c:if> |
94fd04
|
20 |
|
MD |
21 |
<label for="loginoremail" class="col-sm-offset-3 control-label"><fmt:message key="password.reset.loginoremail"/></label> |
90d4d7
|
22 |
<div class="control-group"> |
PH |
23 |
<form class="form-horizontal" method="post" action="${formaction}"> |
94fd04
|
24 |
<fieldset class="col-sm-offset-3"> |
90d4d7
|
25 |
<div class="form-group"> |
PH |
26 |
<div class="col-sm-5"> |
|
27 |
<input |
|
28 |
type="text" class="form-control" id="loginoremail" name="loginoremail" |
2c453c
|
29 |
value="" placeholder="Enter login or email address" autofocus> |
90d4d7
|
30 |
</div> |
PH |
31 |
</div> |
|
32 |
</fieldset> |
94fd04
|
33 |
<p class="col-sm-offset-3"><strong>Hinweis:</strong></br> |
MD |
34 |
Gib hier den GWÖ-Account an, dessen Passwort geändert werden soll.</br> |
|
35 |
Der Passwort-Link wird aber gesendet an die <strong>dort hinterlegte E-Mail-Adresse</strong></br> |
|
36 |
(entweder Deine private E-Mail-Adresse oder eine persönliche ecogood-Adresse bei Service-Postfächern) |
|
37 |
</p> |
|
38 |
<p class="col-sm-offset-3"><strong>Note:</strong></br> |
|
39 |
Enter the ECG username here, that shall have a password change.</br> |
|
40 |
But keep in mind, that the password link will be sent <strong>to the external email-address</strong></br> |
|
41 |
(which is either your private email-address or a personal ecogood address in case of a service-mailbox) |
|
42 |
</p> |
90d4d7
|
43 |
<button type="submit" class="col-sm-offset-3 btn btn-primary additional-space-top"><fmt:message key="password.reset.submit"/></button> |
PH |
44 |
</form> |
|
45 |
</div> |
|
46 |
</div> |
|
47 |
<jsp:include page="template/footer.jsp"/> |
|
48 |
</body> |
|
49 |
</html> |