Updated themes
Updated buildings Updated shipyard page (ships & defense) Added Buildings building queue display & cancel build action. Added research lab Added navigation block structure Removed old code Updated registration Added files to .gitignore Signed-off-by: Gregory PLANCHAT <g.planchat@gmail.com>
This commit is contained in:
parent
ddfb36efa5
commit
8f0f7a4d46
147 changed files with 3488 additions and 2468 deletions
54
includes/application/design/scripts/user/login.phtml
Normal file
54
includes/application/design/scripts/user/login.phtml
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
<div id="main">
|
||||
<div id="login">
|
||||
<div id="login_input">
|
||||
<form name="formular" action="" method="post" onsubmit="changeAction('login');">
|
||||
<table width="400" border="0" cellpadding="0" cellspacing="0">
|
||||
<tbody>
|
||||
<tr style="vertical-align: top;">
|
||||
<td style="padding-right: 4px;">
|
||||
<?php echo $this->__('Username')?> <input name="username" value="" type="text">
|
||||
<?php echo $this->__('Password')?> <input name="password" value="" type="password">
|
||||
</td>
|
||||
</tr><tr>
|
||||
<td style="padding-right: 4px;">
|
||||
<?php echo $this->__('Remember me')?> <input name="rememberme" type="checkbox">
|
||||
<input name="submit" value="<?php echo $this->__('Log in!')?>" type="submit">
|
||||
</td>
|
||||
</tr><tr>
|
||||
<td style="padding-right: 4px;">
|
||||
<a href="lostpassword.php"><?php echo $this->__('I have lost my password.')?></a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<div id="mainmenu" style="margin-top: 20px;">
|
||||
<a href="reg.php"><?php echo $this->__('Register')?></a>
|
||||
<a href="<?php echo $this->getData('board_url')?>"><?php echo $this->__('Boards')?></a>
|
||||
<a href="contact.php"><?php echo $this->__('Contact')?></a>
|
||||
</div>
|
||||
<div id="rightmenu" class="rightmenu">
|
||||
<div id="title"><?php echo $this->__('Welcome on %s!', $this->escape($this->getData('server_name')))?></div>
|
||||
<div id="content">
|
||||
<center>
|
||||
<div id="text1">
|
||||
<div style="text-align: left;"><?php echo $this->__('<strong>%1$s</strong> make you an emperor. Conquer outer space and master other players on <strong>%1$s</strong>.', $this->getData('server_name'))?></div>
|
||||
</div>
|
||||
<div id="register" class="bigbutton" onclick="document.location.href='reg.php';"><font color="#cc0000"><?php echo $this->__('Register now!')?></font></div>
|
||||
<div id="text2">
|
||||
<div id="text3">
|
||||
<center>
|
||||
<b>
|
||||
<font color="#00cc00"><?php echo $this->__('Player count: ')?></font><font color="#c6c7c6"><?php echo $this->getData('user_count')?></font> -
|
||||
<font color="#00cc00"><?php echo $this->__('Latest player: ')?></font><font color="#c6c7c6"><?php echo $this->getData('latest_player')?></font> -
|
||||
<font color="#00cc00"><?php echo $this->__('Online players: ')?></font> <font color="#c6c7c6"><?php echo $this->getData('online_players')?></font>
|
||||
</b>
|
||||
</center>
|
||||
</div>
|
||||
</div>
|
||||
</center>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
36
includes/application/design/scripts/user/registration.phtml
Normal file
36
includes/application/design/scripts/user/registration.phtml
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
<form action="reg.php" method="post">
|
||||
<fieldset>
|
||||
<legend><?php echo $this->__('User data:')?></legend>
|
||||
<p>
|
||||
<label for="register:username"><?php echo $this->__('Username:')?></label>
|
||||
<input type="text" name="username" id="register:username" />
|
||||
</p>
|
||||
<p>
|
||||
<label for="register:email"><?php echo $this->__('Email:')?></label>
|
||||
<input type="text" name="email" id="register:email" />
|
||||
</p>
|
||||
<p>
|
||||
<label for="register:email_confirm"><?php echo $this->__('Confirm email:')?></label>
|
||||
<input type="text" name="email_confirm" id="register:email_confirm" />
|
||||
</p>
|
||||
</fieldset>
|
||||
<fieldset>
|
||||
<legend><?php echo $this->__('Password:')?></legend>
|
||||
<p>
|
||||
<label for="register:username"><?php echo $this->__('Password:')?></label>
|
||||
<input type="password" name="password" id="register:password" />
|
||||
</p>
|
||||
<p>
|
||||
<label for="register:username"><?php echo $this->__('Confirm password:')?></label>
|
||||
<input type="password" name="password_confirm" id="register:password_confirm" />
|
||||
</p>
|
||||
</fieldset>
|
||||
<fieldset>
|
||||
<legend><?php echo $this->__('Planet:')?></legend>
|
||||
<p>
|
||||
<label for="register:planet_name"><?php echo $this->__('Planet name:')?></label>
|
||||
<input type="text" name="planet_name" id="register:planet_name" />
|
||||
</p>
|
||||
</fieldset>
|
||||
<input type="submit" value="<?php echo $this->__('Register!')?>" />
|
||||
</form>
|
||||
Loading…
Reference in a new issue