The first release of the refactored version

It's still a work in progress, there are a lot of things that will
change in the final release
This commit is contained in:
iopietro
2018-09-16 17:22:39 +02:00
parent f032523e1c
commit 62d6e19ee9
3503 changed files with 90956 additions and 35819 deletions
@@ -0,0 +1,13 @@
<div id="content" class="activate">
<h1>
<img src="assets/img/x.gif" class="anmelden"
alt="register for the game" />
</h1>
<h5>
<img src="assets/img/x.gif" class="img_u05" alt="registration" />
</h5>
<p class="f9">Your account has been successfully activated.</p>
<p class="f9">
Follow this link to <a href="login.php">log in</a>
</p>
</div>
+47
View File
@@ -0,0 +1,47 @@
<div id="content" class="activate">
<h1>
<img src="assets/img/x.gif" class="anmelden" alt="register for the game">
</h1>
<h6>No email received?</h6>
In order to play Travian you need a valid email address to which the
activation code can be send. There are exceptional cases when this
email might not arrive.
<p class="f10 e b">Following causes are possible:</p>
<div class="f10">
<ul>
<li>Typos in the email address</li>
<li>The email account`s storage limit is reached</li>
<li>Wrong domain: There is e.g. no @aol.de, only @aol.com</li>
<li>The email has been moved to the spam/junk folder</li>
</ul>
<br />
<br />You can undo the registration and re-register with a <u>different
email address</u>. Then the activation code will be send again
</div>
<form action="activate.php" method="POST">
<input type="hidden" name="del" value="{$del}"/>
<table>
<tr class="top">
<th>Nickname</th>
<td class="Username">
{$del}
<span class="error">{$delError}</span>
</td>
</tr>
<tr class="btm">
<th>Password</th>
<td>
<input class="text" type="password" name="Password" maxlength="20" value="{$Password}"/>
<span class="error">{$PasswordError}</span>
</td>
</tr>
</table>
<p class="btn">
<button class="trav_buttons" id="btn_delete" value="deleteActivation" name="action">Delete</button>
</p>
</form>
{if $del}
{/if}
</div>
@@ -0,0 +1,54 @@
<div id="content" class="signup">
{if $isServerStarted}
{if empty($code) and !empty($activate)}
<h1><img src="assets/img/x.gif" class="anmelden" alt="register for the game"></h1>
<h5><img src="assets/img/x.gif" class="img_u05" alt="registration"/></h5>
<p>
Hello {$activate},
<br /><br />
The registration was successful. In the next few minutes you will receive an email with the access information.
<br /><br />
The email will be sent to following address: <span class="important">{$email}</span>
</p>
<p>In order to activate your account enter the code or click on the link in your email.</p>
<div id="activation">
<form action="activate.php" method="post">
<p class="important">
Activation code:
</p>
<input class="text" type="text" name="code" maxlength="10" />
<p>
<button id="btn_send" value="activate" name="action" class="trav_buttons"> Send </button>
</p>
</form>
</div>
<div id="no_mail">
<p>
<a href="activate.php?del={$activate}"><span class="important">No email received?</span></a>
</p>
<p>
Sometimes the email is moved to the spam folder. <br />For further help click <a href="activate.php?del={$activate}">here</a>
</p>
</div>
{else}
<div id="activation">
<form action="activate.php" method="post">
<p class="important">
Activation code:
</p>
<input class="text" type="text" name="code" maxlength="10" value="{$code}"/>
<p>
<span class="error">{$codeError}</span>
</p>
<p>
<button id="btn_send" value="activate" name="action" class="trav_buttons"> Send </button>
</p>
</form>
</div>
{/if}
{else}
<br/>
<div style="text-align: center"><big>Activation Available in: </big></div>
<div class="timer" id="activation_time">{$serverStartsIn}</div>
{/if}
</div>