This repository has been archived by the owner on Dec 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 240
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add Quickform to login page
- Loading branch information
Lionel Assepo
committed
Oct 21, 2015
1 parent
c1df94c
commit 13b7ab7
Showing
6 changed files
with
262 additions
and
151 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> | ||
<html> | ||
<head> | ||
<title>Centreon - IT & Network Monitoring</title> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | ||
<meta name="Generator" content="Centreon - Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved." /> | ||
<meta name="robots" content="index, nofollow" /> | ||
<link href="{$skin}login.css" rel="stylesheet" type="text/css"> | ||
<link rel="shortcut icon" href="./img/favicon.ico"> | ||
</head> | ||
<body OnLoad="document.login.useralias.focus();"> | ||
|
||
{foreach from=$loginMessages item=message} | ||
<div style='padding-top: 60px;'><span class='msg'>{$message}</span></div> | ||
{/foreach} | ||
|
||
<form action="./index.php" method="post" name="login"> | ||
<div style='text-align:center;align:center;padding-top:90px;'> | ||
<table id="logintab1" style="text-align:center;" align="center"> | ||
<tr> | ||
<td class="LoginInvitLogo" colspan="2"> | ||
<img src="img/centreon.png" alt="Centreon Logo" title="Centreon Logo" style="" /> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td class="LoginInvitVersion"> | ||
<br /> | ||
{$centreonVersion} | ||
</td> | ||
<td class="LoginInvitDate"> | ||
<br /> | ||
{$currentDate} | ||
</td> | ||
</tr> | ||
<tr> | ||
<td colspan="2"> | ||
<table id="logintab2"> | ||
<tr> | ||
<td style="grayLine"><td> | ||
</tr> | ||
<tr> | ||
<td align='right'> | ||
{$form.useralias.label} | ||
</td> | ||
<td> | ||
{$form.useralias.html} | ||
</td> | ||
</tr> | ||
<tr> | ||
<td align='right'> | ||
{$form.password.label} | ||
</td> | ||
<td> | ||
{$form.password.html} | ||
</td> | ||
</tr> | ||
<tr> | ||
<td colspan="2" align='center'> | ||
{$form.submitLogin.html} | ||
</td> | ||
</tr> | ||
</table> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td id="LoginInvitcpy" colspan="2"> | ||
<br /> | ||
© 2005-2015 <a href="mailto:infos@centreon.com">Centreon</a> | ||
</td> | ||
</tr> | ||
</table> | ||
</div> | ||
{$form.hidden} | ||
</form> | ||
</body> | ||
</html> |
Oops, something went wrong.