mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-08-14 07:11:02 +00:00
fix addUsers.tpl
This commit is contained in:
+145
-143
@@ -1,165 +1,167 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
############################################################################
|
|
||||||
## Created by: KFCSpike ##
|
|
||||||
## Contributors: KFCSpike ##
|
|
||||||
## License: TravianZ Project ##
|
|
||||||
## Copyright: TravianZ (c) 2014. All rights reserved. ##
|
|
||||||
############################################################################
|
|
||||||
|
|
||||||
?>
|
|
||||||
|
|
||||||
<form action="../GameEngine/Admin/Mods/addUsers.php" method="POST">
|
<form action="../GameEngine/Admin/Mods/addUsers.php" method="POST">
|
||||||
<input type="hidden" name="id" id="id" value="<?php echo $id; ?>">
|
<input type="hidden" name="id" id="id" value="<?php echo $id; ?>">
|
||||||
|
|
||||||
<center><b>Create Users and Villages</b>
|
<center><b>Create Users and Villages</b>
|
||||||
<br><br>
|
<br><br>
|
||||||
<font color="Red">
|
<font color="Red">
|
||||||
Submitting this form will create new Users<br>(and their home Villages) on your server!
|
Submitting this form will create new Users and/or Villages on your server!
|
||||||
</font><br><font color="blue">with all resource, mainbuilding, rallypoint, warehouse, granary, wall, marketplaced, residence, troop (for level-up hero) and one cranny.
|
|
||||||
</b>
|
|
||||||
</font>
|
</font>
|
||||||
<p>
|
<br>
|
||||||
<b>Base Name</b> should be between 4 and 20 characters long
|
<font color="blue">
|
||||||
</p>
|
Includes resources, main building, rally point, warehouse, granary, wall, market, residence, troops (for hero level-up), and one cranny.
|
||||||
<b>How Many</b> should be between 1 and 200<br>
|
</font>
|
||||||
(Higher values might take a while or cause a crash!)
|
<p><b>Base Name</b> should be between 4 and 20 characters long</p>
|
||||||
<br><br>
|
|
||||||
If you want to run this more than once you should use different a different Base Name each time - if a UserName already exists it will be skipped
|
|
||||||
<br><br>
|
|
||||||
Example:<br>
|
|
||||||
Base Name = Farm<br>
|
|
||||||
How Many = 5<br>
|
|
||||||
Users created will be Farm1, Farm2, Farm3, Farm4, Farm5<br>
|
|
||||||
<br>
|
|
||||||
<br>
|
|
||||||
|
|
||||||
<?php
|
<!-- NEW: Mode switch -->
|
||||||
|
<b>Mode</b><br>
|
||||||
|
<label><input type="radio" name="mode" value="many_accounts" checked> Many accounts (legacy): create X accounts with 1 village each</label><br>
|
||||||
|
<label><input type="radio" name="mode" value="single_with_villages"> Single account: create 1 account with X villages</label>
|
||||||
|
<br><br>
|
||||||
|
|
||||||
|
<!-- Legacy fields -->
|
||||||
|
<b>How Many (accounts)</b> should be between 1 and 200<br>
|
||||||
|
(Higher values might take a while or cause a crash!)
|
||||||
|
<br><br>
|
||||||
|
|
||||||
|
<!-- Example -->
|
||||||
|
If you want to run this more than once you should use a different Base Name each time.<br>
|
||||||
|
<br>
|
||||||
|
Example (legacy):<br>
|
||||||
|
Base Name = Farm | How Many (accounts) = 5 → Users: Farm1..Farm5<br>
|
||||||
|
Example (single):<br>
|
||||||
|
Base Name = FarmLord | Villages = 5 → User: FarmLord with 5 villages
|
||||||
|
<br><br>
|
||||||
|
|
||||||
|
<?php
|
||||||
$baseNameFontColor = "Black";
|
$baseNameFontColor = "Black";
|
||||||
$amountFontColor = "Black";
|
$amountFontColor = "Black";
|
||||||
|
$villagesFontColor = "Black";
|
||||||
|
|
||||||
$baseName = "Farm";
|
$baseName = "Farm";
|
||||||
$amount = 20;
|
$amount = 20; // accounts (legacy)
|
||||||
|
$villages = 5; // villages (single account)
|
||||||
|
$mode = "many_accounts";
|
||||||
|
|
||||||
if(isset($_GET['e']))
|
if(isset($_GET['e'])) {
|
||||||
{
|
$baseName = ($_GET['bn']);
|
||||||
// If &e is set then &bn + &am should be as well
|
$amount = isset($_GET['am']) ? ($_GET['am']) : $amount;
|
||||||
$baseName = ($_GET['bn']);
|
$villages = isset($_GET['vi']) ? ($_GET['vi']) : $villages;
|
||||||
$amount = ($_GET['am']);
|
$mode = isset($_GET['mo']) ? ($_GET['mo']) : $mode;
|
||||||
switch ($_GET['e'])
|
|
||||||
{
|
switch ($_GET['e']) {
|
||||||
case 'BN2S':
|
case 'BN2S':
|
||||||
$baseNameFontColor = "Red";
|
$baseNameFontColor = "Red";
|
||||||
echo '<br /><br /><font color="Red"><b>Error: Base Name is too short (min 4 chars)</font></b>';
|
echo '<br /><br /><font color="Red"><b>Error: Base Name is too short (min 4 chars)</b></font>';
|
||||||
break;
|
break;
|
||||||
case 'BN2L':
|
case 'BN2L':
|
||||||
$baseNameFontColor = "Red";
|
$baseNameFontColor = "Red";
|
||||||
echo '<br /><br /><font color="Red"><b>Error: Base Name is too long (max 20 chars)</font></b>';
|
echo '<br /><br /><font color="Red"><b>Error: Base Name is too long (max 20 chars)</b></font>';
|
||||||
break;
|
break;
|
||||||
case 'AMLO':
|
case 'AMLO':
|
||||||
$amountFontColor = "Red";
|
$amountFontColor = "Red";
|
||||||
echo '<br /><br /><font color="Red"><b>Error: Minimum of 1 for How Many</font></b>';
|
echo '<br /><br /><font color="Red"><b>Error: Minimum of 1 for How Many (accounts)</b></font>';
|
||||||
break;
|
break;
|
||||||
case 'AMHI':
|
case 'AMHI':
|
||||||
$amountFontColor = "Red";
|
$amountFontColor = "Red";
|
||||||
echo '<br /><br /><font color="Red"><b>Error: Maximum of 200 for How Many</font></b>';
|
echo '<br /><br /><font color="Red"><b>Error: Maximum of 200 for How Many (accounts)</b></font>';
|
||||||
break;
|
break;
|
||||||
default:
|
case 'VILO':
|
||||||
// Should never reach here
|
$villagesFontColor = "Red";
|
||||||
$baseNameFontColor = "Black";
|
echo '<br /><br /><font color="Red"><b>Error: Minimum of 1 for Villages</b></font>';
|
||||||
$amountFontColor = "Black";
|
break;
|
||||||
echo '<br /><br /><font color="Red"><b>Error: Unknown</font></b>';
|
case 'VIHI':
|
||||||
}
|
$villagesFontColor = "Red";
|
||||||
|
echo '<br /><br /><font color="Red"><b>Error: Maximum of 200 for Villages</b></font>';
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
echo '<br /><br /><font color="Red"><b>Error: Unknown</b></font>';
|
||||||
}
|
}
|
||||||
elseif ( isset($_GET['g']) && $_GET['g'] == 'OK')
|
}
|
||||||
{
|
elseif ( isset($_GET['g']) && $_GET['g'] == 'OK') {
|
||||||
$baseName = ($_GET['bn']);
|
$baseName = ($_GET['bn']);
|
||||||
$amount = ($_GET['am']);
|
$mode = ($_GET['mo']);
|
||||||
$skipped = ($_GET['sk']);
|
$skipped = ($_GET['sk']);
|
||||||
$beginnersProtection = ($_GET['bp']);
|
$beginnersProtection = ($_GET['bp']);
|
||||||
switch ($_GET['tr'])
|
|
||||||
{
|
|
||||||
case '0':
|
|
||||||
$tribe = RANDOM;
|
|
||||||
break;
|
|
||||||
case '1':
|
|
||||||
$tribe = TRIBE1; // Romans
|
|
||||||
break;
|
|
||||||
case '2':
|
|
||||||
$tribe = TRIBE2; // Teutons
|
|
||||||
break;
|
|
||||||
case '3':
|
|
||||||
$tribe = TRIBE3; // Gauls
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
// Should never reach here
|
|
||||||
$tribe = 'Unknown';
|
|
||||||
}
|
|
||||||
|
|
||||||
echo '<br /><br />
|
// interpret the tribe label
|
||||||
<font color="Blue"><b>'
|
switch ($_GET['tr']) {
|
||||||
. $amount .
|
case '0': $tribe = RANDOM; break;
|
||||||
'</b></font>
|
case '1': $tribe = TRIBE1; break;
|
||||||
Users and Villages added using Base Name
|
case '2': $tribe = TRIBE2; break;
|
||||||
<font color="Blue"><b>'
|
case '3': $tribe = TRIBE3; break;
|
||||||
. $baseName .
|
default: $tribe = 'Unknown';
|
||||||
'</b></font><br>';
|
|
||||||
|
|
||||||
// Say if Beginners Protection was set for any Users created
|
|
||||||
if ($amount > 0)
|
|
||||||
{
|
|
||||||
// Plural or Singular for User(s)
|
|
||||||
// TODO: Add options for these to lang files
|
|
||||||
if ($amount > 1)
|
|
||||||
{
|
|
||||||
$usersMessage = 'these Users';
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$usersMessage = 'this User';
|
|
||||||
}
|
|
||||||
$begMessage = 'Beginners Protection was ';
|
|
||||||
if (!$beginnersProtection)
|
|
||||||
{
|
|
||||||
$begMessage .= '<font color="red"><b>NOT</b></font> ';
|
|
||||||
}
|
|
||||||
$begMessage .= 'set for ' . $usersMessage . '<br>';
|
|
||||||
echo $begMessage;
|
|
||||||
|
|
||||||
// Say Tribes chosen
|
|
||||||
$tribeMessage = 'Tribe for ' . $usersMessage . ' was ';
|
|
||||||
$tribeMessage .= $tribe . '<br>';
|
|
||||||
echo $tribeMessage;
|
|
||||||
}
|
|
||||||
if ($skipped > 0)
|
|
||||||
{
|
|
||||||
echo '<font color="Red"><b>'
|
|
||||||
. $skipped .
|
|
||||||
'</b></font>
|
|
||||||
Users not created as the user name already exists
|
|
||||||
</b></font><br>';
|
|
||||||
}
|
|
||||||
echo '<br>Now would be a good time to '
|
|
||||||
. '<a href="' . SERVER . '/dorf1.php">Return to the server</a>'
|
|
||||||
. ' this will update rankings etc but <b>will</b> take a while!<br>'
|
|
||||||
. ' Make sure <b>max_execution_time</b> is set to a high enough value in php.ini<br><br>'
|
|
||||||
. 'Choose a different <b>Base Name</b> if you want to create more<br>';
|
|
||||||
// Clear the basename from form values so not used again
|
|
||||||
$baseName = "";
|
|
||||||
$amount = "";
|
|
||||||
}
|
}
|
||||||
?>
|
|
||||||
<br>
|
if ($mode === 'many_accounts') {
|
||||||
|
$amount = ($_GET['am']);
|
||||||
|
echo '<br /><br /><font color="Blue"><b>'.$amount.'</b></font> Users (1 village each) added with Base Name <font color="Blue"><b>'.$baseName.'</b></font><br>';
|
||||||
|
} else {
|
||||||
|
$villages = ($_GET['vi']);
|
||||||
|
echo '<br /><br />Created User <font color="Blue"><b>'.$baseName.'</b></font> with <font color="Blue"><b>'.$villages.'</b></font> villages.<br>';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (($mode === 'many_accounts' && $amount > 0) || ($mode === 'single_with_villages' && $villages > 0)) {
|
||||||
|
$usersMessage = ($mode === 'many_accounts' ? (($amount > 1) ? 'these Users' : 'this User') : 'this User');
|
||||||
|
$begMessage = 'Beginners Protection was ';
|
||||||
|
if (!$beginnersProtection) { $begMessage .= '<font color="red"><b>NOT</b></font> '; }
|
||||||
|
$begMessage .= 'set for '.$usersMessage.'<br>';
|
||||||
|
echo $begMessage;
|
||||||
|
|
||||||
|
$tribeMessage = 'Tribe for '.$usersMessage.' was '.$tribe.'<br>';
|
||||||
|
echo $tribeMessage;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($skipped > 0) {
|
||||||
|
echo '<font color="Red"><b>'.$skipped.'</b></font> Users not created as the user name already exists<br>';
|
||||||
|
}
|
||||||
|
|
||||||
|
echo '<br>Now would be a good time to <a href="'.SERVER.'/dorf1.php">Return to the server</a> (updates rankings; may take a while)<br>'
|
||||||
|
. 'Make sure <b>max_execution_time</b> is set high enough in php.ini<br><br>';
|
||||||
|
$baseName = ""; $amount = ""; $villages = "";
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
<br>
|
||||||
</center>
|
</center>
|
||||||
<font color ="<?php echo $baseNameFontColor ?>">Base Name </font><input type ="text" name="users_base_name" id="users_name" value="<?php echo $baseName ?>" maxlength="20">
|
|
||||||
<br><br>
|
<!-- Base name -->
|
||||||
<font color ="<?php echo $amountFontColor ?>">How Many </font><input type ="text" name="users_amount" id="users_amount" value="<?php echo $amount ?>" maxlength="4">
|
<font color ="<?php echo $baseNameFontColor ?>">Base Name </font>
|
||||||
|
<input type ="text" name="users_base_name" id="users_name" value="<?php echo $baseName ?>" maxlength="20">
|
||||||
<br><br>
|
<br><br>
|
||||||
|
|
||||||
|
<!-- Accounts amount (legacy) -->
|
||||||
|
<div id="accountsBlock">
|
||||||
|
<font color ="<?php echo $amountFontColor ?>">How Many (accounts) </font>
|
||||||
|
<input type ="text" name="users_amount" id="users_amount" value="<?php echo $amount ?>" maxlength="4">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Villages amount (single account) -->
|
||||||
|
<div id="villagesBlock" style="margin-top:10px;">
|
||||||
|
<font color ="<?php echo $villagesFontColor ?>">Villages (for single account) </font>
|
||||||
|
<input type ="text" name="villages_amount" id="villages_amount" value="<?php echo $villages ?>" maxlength="4">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<br>
|
||||||
Beginners Protection <input type ="checkbox" name="users_protection" id="users_protection" checked>
|
Beginners Protection <input type ="checkbox" name="users_protection" id="users_protection" checked>
|
||||||
<br><br>
|
<br><br>
|
||||||
Tribe:<br>
|
Tribe:<br>
|
||||||
<label><input type="radio" name="tribe" value="0" checked> <?php echo RANDOM; ?></label><br>
|
<label><input type="radio" name="tribe" value="0" checked> <?php echo RANDOM; ?></label><br>
|
||||||
<label><input type="radio" name="tribe" value="1"> <?php echo TRIBE1; /* Romans */ ?></label><br>
|
<label><input type="radio" name="tribe" value="1"> <?php echo TRIBE1; ?></label><br>
|
||||||
<label><input type="radio" name="tribe" value="2"> <?php echo TRIBE2; /* Teutons */ ?></label><br>
|
<label><input type="radio" name="tribe" value="2"> <?php echo TRIBE2; ?></label><br>
|
||||||
<label><input type="radio" name="tribe" value="3"> <?php echo TRIBE3; /* Gauls */ ?></label><br>
|
<label><input type="radio" name="tribe" value="3"> <?php echo TRIBE3; ?></label><br>
|
||||||
<br><br>
|
<br><br>
|
||||||
<input type="submit" value="Create Users">
|
<input type="submit" value="Create">
|
||||||
|
|
||||||
|
<script>
|
||||||
|
// Tiny progressive disclosure (no external JS)
|
||||||
|
(function(){
|
||||||
|
function sync() {
|
||||||
|
var mode = document.querySelector('input[name="mode"]:checked').value;
|
||||||
|
document.getElementById('accountsBlock').style.opacity = (mode==='many_accounts') ? '1' : '0.3';
|
||||||
|
document.getElementById('villagesBlock').style.opacity = (mode==='single_with_villages') ? '1' : '0.3';
|
||||||
|
}
|
||||||
|
var radios = document.querySelectorAll('input[name="mode"]');
|
||||||
|
for (var i=0;i<radios.length;i++){ radios[i].addEventListener('change', sync); }
|
||||||
|
sync();
|
||||||
|
})();
|
||||||
|
</script>
|
||||||
</form>
|
</form>
|
||||||
|
|||||||
@@ -1,167 +0,0 @@
|
|||||||
<form action="../GameEngine/Admin/Mods/addUsers.php" method="POST">
|
|
||||||
<input type="hidden" name="id" id="id" value="<?php echo $id; ?>">
|
|
||||||
|
|
||||||
<center><b>Create Users and Villages</b>
|
|
||||||
<br><br>
|
|
||||||
<font color="Red">
|
|
||||||
Submitting this form will create new Users and/or Villages on your server!
|
|
||||||
</font>
|
|
||||||
<br>
|
|
||||||
<font color="blue">
|
|
||||||
Includes resources, main building, rally point, warehouse, granary, wall, market, residence, troops (for hero level-up), and one cranny.
|
|
||||||
</font>
|
|
||||||
<p><b>Base Name</b> should be between 4 and 20 characters long</p>
|
|
||||||
|
|
||||||
<!-- NEW: Mode switch -->
|
|
||||||
<b>Mode</b><br>
|
|
||||||
<label><input type="radio" name="mode" value="many_accounts" checked> Many accounts (legacy): create X accounts with 1 village each</label><br>
|
|
||||||
<label><input type="radio" name="mode" value="single_with_villages"> Single account: create 1 account with X villages</label>
|
|
||||||
<br><br>
|
|
||||||
|
|
||||||
<!-- Legacy fields -->
|
|
||||||
<b>How Many (accounts)</b> should be between 1 and 200<br>
|
|
||||||
(Higher values might take a while or cause a crash!)
|
|
||||||
<br><br>
|
|
||||||
|
|
||||||
<!-- Example -->
|
|
||||||
If you want to run this more than once you should use a different Base Name each time.<br>
|
|
||||||
<br>
|
|
||||||
Example (legacy):<br>
|
|
||||||
Base Name = Farm | How Many (accounts) = 5 → Users: Farm1..Farm5<br>
|
|
||||||
Example (single):<br>
|
|
||||||
Base Name = FarmLord | Villages = 5 → User: FarmLord with 5 villages
|
|
||||||
<br><br>
|
|
||||||
|
|
||||||
<?php
|
|
||||||
$baseNameFontColor = "Black";
|
|
||||||
$amountFontColor = "Black";
|
|
||||||
$villagesFontColor = "Black";
|
|
||||||
|
|
||||||
$baseName = "Farm";
|
|
||||||
$amount = 20; // accounts (legacy)
|
|
||||||
$villages = 5; // villages (single account)
|
|
||||||
$mode = "many_accounts";
|
|
||||||
|
|
||||||
if(isset($_GET['e'])) {
|
|
||||||
$baseName = ($_GET['bn']);
|
|
||||||
$amount = isset($_GET['am']) ? ($_GET['am']) : $amount;
|
|
||||||
$villages = isset($_GET['vi']) ? ($_GET['vi']) : $villages;
|
|
||||||
$mode = isset($_GET['mo']) ? ($_GET['mo']) : $mode;
|
|
||||||
|
|
||||||
switch ($_GET['e']) {
|
|
||||||
case 'BN2S':
|
|
||||||
$baseNameFontColor = "Red";
|
|
||||||
echo '<br /><br /><font color="Red"><b>Error: Base Name is too short (min 4 chars)</b></font>';
|
|
||||||
break;
|
|
||||||
case 'BN2L':
|
|
||||||
$baseNameFontColor = "Red";
|
|
||||||
echo '<br /><br /><font color="Red"><b>Error: Base Name is too long (max 20 chars)</b></font>';
|
|
||||||
break;
|
|
||||||
case 'AMLO':
|
|
||||||
$amountFontColor = "Red";
|
|
||||||
echo '<br /><br /><font color="Red"><b>Error: Minimum of 1 for How Many (accounts)</b></font>';
|
|
||||||
break;
|
|
||||||
case 'AMHI':
|
|
||||||
$amountFontColor = "Red";
|
|
||||||
echo '<br /><br /><font color="Red"><b>Error: Maximum of 200 for How Many (accounts)</b></font>';
|
|
||||||
break;
|
|
||||||
case 'VILO':
|
|
||||||
$villagesFontColor = "Red";
|
|
||||||
echo '<br /><br /><font color="Red"><b>Error: Minimum of 1 for Villages</b></font>';
|
|
||||||
break;
|
|
||||||
case 'VIHI':
|
|
||||||
$villagesFontColor = "Red";
|
|
||||||
echo '<br /><br /><font color="Red"><b>Error: Maximum of 200 for Villages</b></font>';
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
echo '<br /><br /><font color="Red"><b>Error: Unknown</b></font>';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
elseif ( isset($_GET['g']) && $_GET['g'] == 'OK') {
|
|
||||||
$baseName = ($_GET['bn']);
|
|
||||||
$mode = ($_GET['mo']);
|
|
||||||
$skipped = ($_GET['sk']);
|
|
||||||
$beginnersProtection = ($_GET['bp']);
|
|
||||||
|
|
||||||
// interpret the tribe label
|
|
||||||
switch ($_GET['tr']) {
|
|
||||||
case '0': $tribe = RANDOM; break;
|
|
||||||
case '1': $tribe = TRIBE1; break;
|
|
||||||
case '2': $tribe = TRIBE2; break;
|
|
||||||
case '3': $tribe = TRIBE3; break;
|
|
||||||
default: $tribe = 'Unknown';
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($mode === 'many_accounts') {
|
|
||||||
$amount = ($_GET['am']);
|
|
||||||
echo '<br /><br /><font color="Blue"><b>'.$amount.'</b></font> Users (1 village each) added with Base Name <font color="Blue"><b>'.$baseName.'</b></font><br>';
|
|
||||||
} else {
|
|
||||||
$villages = ($_GET['vi']);
|
|
||||||
echo '<br /><br />Created User <font color="Blue"><b>'.$baseName.'</b></font> with <font color="Blue"><b>'.$villages.'</b></font> villages.<br>';
|
|
||||||
}
|
|
||||||
|
|
||||||
if (($mode === 'many_accounts' && $amount > 0) || ($mode === 'single_with_villages' && $villages > 0)) {
|
|
||||||
$usersMessage = ($mode === 'many_accounts' ? (($amount > 1) ? 'these Users' : 'this User') : 'this User');
|
|
||||||
$begMessage = 'Beginners Protection was ';
|
|
||||||
if (!$beginnersProtection) { $begMessage .= '<font color="red"><b>NOT</b></font> '; }
|
|
||||||
$begMessage .= 'set for '.$usersMessage.'<br>';
|
|
||||||
echo $begMessage;
|
|
||||||
|
|
||||||
$tribeMessage = 'Tribe for '.$usersMessage.' was '.$tribe.'<br>';
|
|
||||||
echo $tribeMessage;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($skipped > 0) {
|
|
||||||
echo '<font color="Red"><b>'.$skipped.'</b></font> Users not created as the user name already exists<br>';
|
|
||||||
}
|
|
||||||
|
|
||||||
echo '<br>Now would be a good time to <a href="'.SERVER.'/dorf1.php">Return to the server</a> (updates rankings; may take a while)<br>'
|
|
||||||
. 'Make sure <b>max_execution_time</b> is set high enough in php.ini<br><br>';
|
|
||||||
$baseName = ""; $amount = ""; $villages = "";
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
<br>
|
|
||||||
</center>
|
|
||||||
|
|
||||||
<!-- Base name -->
|
|
||||||
<font color ="<?php echo $baseNameFontColor ?>">Base Name </font>
|
|
||||||
<input type ="text" name="users_base_name" id="users_name" value="<?php echo $baseName ?>" maxlength="20">
|
|
||||||
<br><br>
|
|
||||||
|
|
||||||
<!-- Accounts amount (legacy) -->
|
|
||||||
<div id="accountsBlock">
|
|
||||||
<font color ="<?php echo $amountFontColor ?>">How Many (accounts) </font>
|
|
||||||
<input type ="text" name="users_amount" id="users_amount" value="<?php echo $amount ?>" maxlength="4">
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Villages amount (single account) -->
|
|
||||||
<div id="villagesBlock" style="margin-top:10px;">
|
|
||||||
<font color ="<?php echo $villagesFontColor ?>">Villages (for single account) </font>
|
|
||||||
<input type ="text" name="villages_amount" id="villages_amount" value="<?php echo $villages ?>" maxlength="4">
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<br>
|
|
||||||
Beginners Protection <input type ="checkbox" name="users_protection" id="users_protection" checked>
|
|
||||||
<br><br>
|
|
||||||
Tribe:<br>
|
|
||||||
<label><input type="radio" name="tribe" value="0" checked> <?php echo RANDOM; ?></label><br>
|
|
||||||
<label><input type="radio" name="tribe" value="1"> <?php echo TRIBE1; ?></label><br>
|
|
||||||
<label><input type="radio" name="tribe" value="2"> <?php echo TRIBE2; ?></label><br>
|
|
||||||
<label><input type="radio" name="tribe" value="3"> <?php echo TRIBE3; ?></label><br>
|
|
||||||
<br><br>
|
|
||||||
<input type="submit" value="Create">
|
|
||||||
|
|
||||||
<script>
|
|
||||||
// Tiny progressive disclosure (no external JS)
|
|
||||||
(function(){
|
|
||||||
function sync() {
|
|
||||||
var mode = document.querySelector('input[name="mode"]:checked').value;
|
|
||||||
document.getElementById('accountsBlock').style.opacity = (mode==='many_accounts') ? '1' : '0.3';
|
|
||||||
document.getElementById('villagesBlock').style.opacity = (mode==='single_with_villages') ? '1' : '0.3';
|
|
||||||
}
|
|
||||||
var radios = document.querySelectorAll('input[name="mode"]');
|
|
||||||
for (var i=0;i<radios.length;i++){ radios[i].addEventListener('change', sync); }
|
|
||||||
sync();
|
|
||||||
})();
|
|
||||||
</script>
|
|
||||||
</form>
|
|
||||||
Reference in New Issue
Block a user