webwesen
11/4/2014 - 3:37 PM

Confluence forgot-password => explanatory text

Confluence forgot-password => explanatory text

<html>

<head>
 <title>$action.getText("title.forgot.pass")</title>
</head>

<body>
<content tag="bodyClass">login forgot-password</content>

<div id="login-container" class="userpassword-section">
<h2>$action.getText("title.forgot.pass")</h2>

#parse ( "/template/includes/actionerrors.vm" )

#if ($action.mailServerConfigured)
#applyDecorator("form-aui")
#decoratorParam("formName" "forgotpasswordform")
#decoratorParam("submitAction"  "$req.contextPath/doforgotuserpassword.action")
#decoratorParam("editAction" "$req.contextPath/forgotuserpassword.action")
#decoratorParam("editMode" "true")
#decoratorParam("formStyle" "login-form-container")

<p>
You must login with you Windows Username and Password.<br>
If you still have isues logging in, please contact your Administrators.<br>
</p>

<fieldset class="compact-form-fields">
<div class="field-group form-buttons compact-form-buttons">
<a href="${req.contextPath}/login.action" class="aui-button aui-style aui-button-link">Log In</a>
<a href="${req.contextPath}/contactadministrators.action" class="aui-button aui-style aui-button-link">Contact Administrators</a>
</div>
</fieldset>
#end

#else
<p>
$action.getText("forgot.pass.nomailserver", ["$action.globalSettings.siteTitle", "$req.contextPath/contactadministrators.action"])
</p>

<p class="last">
<a href="${req.contextPath}/login.action" class="aui-button aui-style aui-button-primary">$action.getText("login.button")</a>
</p>

#end

</div>
</body>
</html>