{{ header|raw }}

<div class="container" style="margin-top:30px;">
    <h2>{{ activation_form_title }}</h2>
    <form action="{{ activation_url }}" method="post" name="activation_form">
        <div class="form-group">
            <label for="vcode">{{ lbl_vcode }}</label>
            <input type="text" class="form-control" id="vcode" name="vcode" maxlength="4"
                   onkeypress="return allowNumbersOnly(event)" placeholder="{{ lbl_vcode }}" value="" required>
            <input type="hidden" id="mobile" name="mobile" value="{{ mobile }}">
        </div>

        <button class="btn btn-primary" id="btn_activation" style="background-color: #000;outline:none;border:1px solid #000;">{{ lbl_send }}</button>
    </form>
</div>

{{ footer|raw }}

