© Сделано на LiveStreet
Дизайн - ©2009 MODx RED Group
[!unisenderConnector? &listId=`ID рассылки куда подписываем` &apiKey=`ApiKeyUnisender` &tags=`список меток через запятую. передаются вместе с подписчиком чтобы идентифицировать где он подписался` &tplForm=`unisender`!]<div class="register">
<div class="registerMessage">[[+error.message]]</div>
<form class="form" action="[[~[[*id]]]]" method="post">
<input type="hidden" name="nospam:blank" value="" />
<div class="hidden"> <label for="username">[[%register.username? &namespace=`login` &topic=`register`]]
<span class="error">[[+error.username]]</span>
</label>
<input type="text" name="username" id="username" value="[[+username]]" />[[+email]]</div>
<label for="email">[[%register.email]]
<span class="error">[[+error.email]]</span>
</label>
<input type="text" name="email:email" id="email" value="[[+email]]" />
<label for="password">[[%register.password]]
<span class="error">[[+error.password]]</span>
</label>
<input type="password" name="password:required:minLength=6" id="password" value="[[+password]]" />
<label for="password_confirm">[[%register.password_confirm]]
<span class="error">[[+error.password_confirm]]</span>
</label>
<input type="password" name="password_confirm:password_confirm=`password`" id="password_confirm" value="[[+password_confirm]]" />
<div class="hidden"> <label for="fullname">[[%register.fullname]]
<span class="error">[[+error.fullname]]</span>
</label>
<input type="text" name="fullname id="fullname" value="[[+fullname]]" />[[+email]]</div>
<br class="clear" />
<div class="form-buttons">
<input type="submit" name="login-register-btn" value="Register" />
</div>
</form>
</div>[[!Login? &loginTpl=`lgnLoginTplEN` &logoutTpl=`lgnLogoutTplEN` &errTpl=`lgnErrTplEN` &loginResourceId=`8` &logoutResourceId=`1`]]
Forgot password?
[[!Register]] [[$en-lgnRegisterForm]]<?php
/**
* Register
*
* Copyright 2010 by Shaun McCormick <shaun@modx.com>
*
* Register is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your option) any later
* version.
*
* Register is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with
* Register; if not, write to the Free Software Foundation, Inc., 59 Temple
* Place, Suite 330, Boston, MA 02111-1307 USA
*
* @package login
*/
/**
* MODx Confirm Register Activation Snippet. Snippet to place on an activation
* page that the user using the Register snippet would be sent to via the
* activation email.
*
* @var modX $modx
* @var Login $login
* @var array $scriptProperties
*
* @package login
*/
require_once $modx->getOption('login.core_path',null,$modx->getOption('core_path').'components/login/').'model/login/login.class.php';
$login = new Login($modx,$scriptProperties);
$controller = $login->loadController('ConfirmRegister');
$output = $controller->run($scriptProperties);
return $output;