RegisterForm
DomainEmail + şifre + şifre doğrulama formu. Alan bazlı hata mesajları.
<%- include('modules/domain/common/auth/RegisterForm', {
action: '/auth/register',
method: 'post'
}) %>
<%- include('modules/domain/common/auth/RegisterForm', {
action: '/auth/register',
errors: {
email: 'Enter a valid email address.',
password: 'Password must be at least 8 characters.'
}
}) %>
<%
var _action = locals.action || '#';
var _method = locals.method || 'post';
var _error = locals.error || '';
var _errors = locals.errors || {};
%>