• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[MyAAC] Change Letters to Numbers Creation Account number

kingsolis

New Member
Joined
Oct 25, 2016
Messages
2
Reaction score
0
Hello, I am using the MyAAC version for my web server. I would like to know how I can place that when creating the account number it can only be with numbers, because it is currently accepting numbers and letters. Thanks and regards.
 
system/templates/account.create.html.twig

Replace this:

HTML:
<input type="text" name="account" id="account_input" size="30" maxlength="{% if constant('USE_ACCOUNT_NAME') %}30{% else %}10{% endif %}" value="{{ account }}" autofocus/>

with this:

HTML:
<input type="number" name="account" id="account_input" size="30" maxlength="{% if constant('USE_ACCOUNT_NAME') %}30{% else %}10{% endif %}" value="{{ account }}" autofocus/>
 
Back
Top