Fix Formulario de Login
This commit is contained in:
Binary file not shown.
@@ -5,7 +5,7 @@ $(function(){
|
||||
|
||||
var button = $(this);
|
||||
var originalText = button.html();
|
||||
var data = $("#uw-gold-form").serialize();
|
||||
var data = $("#nw-gold-form").serialize();
|
||||
|
||||
button.html('Procesando pago...');
|
||||
button.prop('disabled', true);
|
||||
|
||||
@@ -5,7 +5,7 @@ $(function(){
|
||||
|
||||
var button = $(this);
|
||||
var originalText = button.text();
|
||||
var data = $("#uw-transfer-character-form").serialize();
|
||||
var data = $("#nw-transfer-character-form").serialize();
|
||||
|
||||
button.text("Procesando pago...");
|
||||
button.prop("disabled", true);
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
</div>
|
||||
<div class="body-box-content justified">
|
||||
<p>Selecciona un personaje y la cantidad de oro:</p>
|
||||
<form id="uw-gold-form">
|
||||
<form id="nw-gold-form">
|
||||
<select name="character" required>
|
||||
<option value="" selected disabled>Seleccione un personaje</option>
|
||||
{% for character, data in characters.items %}
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
</div>
|
||||
<div class="box-content">
|
||||
<div class="body-box-content centered">
|
||||
<form action="{% url 'login' %}" method="POST" id="uw-login-form" accept-charset="utf-8" onsubmit="event.preventDefault(); submitLoginForm();">
|
||||
<form action="{% url 'login' %}" method="POST" id="nw-login-form" accept-charset="utf-8" onsubmit="event.preventDefault(); submitLoginForm();">
|
||||
{% csrf_token %}
|
||||
<table class="middle-center-table">
|
||||
<tr>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<a class="back-to-account" href="{% url 'my-account' %}">Regresar a mi cuenta</a>
|
||||
</div>
|
||||
<div class="body-box-content justified">
|
||||
<form id="uw-transfer-character-form">
|
||||
<form id="nw-transfer-character-form">
|
||||
<select name="character" required>
|
||||
<option value="" selected disabled>Seleccione un personaje</option>
|
||||
{% for character in characters %}
|
||||
|
||||
Reference in New Issue
Block a user