{#{% extends "_layouts/base.html" %}#}
{% extends request.master_template %}
{% load i18n %}
{% block page_title %}Create an Account{% endblock %}
{% block meta_title %}Login or Create a New Account with HRCP Here | HRCP{% endblock meta_title %}
{% block meta_description %}Welcome to your login information to help you access your products that you have purchased, our practice study test and study guides. Have any questions please contact us.{% endblock meta_description %}
{% block header_text %}Create an Account{% endblock header_text %}
{% block content %}
{% if msg %}
<div class='alert alert-danger'>
<strong>{{msg}}</strong>
</div>
{% endif %}
<div class='container'>
<div class='row' style='margin-top:40px;'>
<div class='col-md-6'>
<h2>{% trans "Create an Account" %}</h2>
{% if request.subdomain == 'hrcp' %}
<p>
{% trans "Create an account for access to practice tests and online study resources" %}
</p>
{% elif request.subdomain == 'micro' %}
<p>{% trans "Create an account for access to online micro hr courses." %}</p>
<p style='font-size:14px'>* {% trans "If you already have an HRCP username and password, please use those same login credentials to log into micro.hrcp.com" %}</p>
{% endif %}
<a class='hrcp_button pad10 ui-corner-all ui-state-default' style='width:135px; font-size:12px; margin:20px 0 10px 0; cursor:pointer; display:block; text-decoration:none;' href='/signup/'>
{% trans "Create an Account" %}
</a>
</div>
<div class='col-md-6'>
<h2>{% trans "Member Log in" %}</h2>
<a href="{% url 'password_reset_recover' %}" style='display:block; margin:10px 0;'>{% trans "Reset Your Password" %}</a>
<form id='login_page_form' method='post' action'.' autocomplete='off'>
{% csrf_token %}
<input type='hidden' name='next' value='{{ next }}' />
<table cellpadding='5'>
<tr>
<td><label for="username">{% trans "Username" %}</label></td>
<td><input id='username' name='username' type='text' /></td>
</tr>
<tr>
<td><label for="password">{% trans "Password" %}</label></td>
<td><input id='password' name='password' type='password' /></td>
</tr>
<tr>
<td colspan='2'><input type='submit' value='Login'></td>
</tr>
</table>
</form>
</div>
</div>
</div>
{% endblock %}