Quick and simple PHP gift registry
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
phpgiftreg/templates/signup.tpl

157 lines
5.4 KiB

{*
This program 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.
This program 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 this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*}
<!DOCTYPE html>
<html lang="en">
<head>
<title>Gift Registry - Sign Up</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
<script src="js/jquery.validate.min.js"></script>
<script src="js/giftreg.js"></script>
<script language="JavaScript" type="text/javascript">
$(document).ready(function() {
$("#signupform").validate({
highlight: validate_highlight,
success: validate_success,
rules: {
username: {
required: true,
maxlength: 20
},
fullname: {
required: true,
maxlength: 50
},
email: {
required: true,
email: true,
maxlength: 255
},
familyid: {
required: true
}
},
messages: {
username: {
required: "A username is required.",
maxlength: "Username must be 20 characters or less."
},
fullname: {
required: "Your full name is required.",
maxlength: "Your full name must be 50 characteres or less."
},
email: "A valid e-mail address is required.",
familyid: "Please select a family."
}
});
});
</script>
</head>
<body>
<div class="container" style="padding-top: 30px;">
{if isset($error)}
<div class="row">
<div class="span8 offset2">
<div class="alert alert-block">{$error|escape:'htmlall'}</div>
</div>
</div>
{/if}
{if isset($action) && $action == "signup" && !isset($error)}
<div class="row">
<div class="span8 offset2">
<div class="well">
<p>Thank you for signing up.</p>
{if $opt.newuser_requires_approval}
<p>The administrators have been informed of your request and you will receive an e-mail once they've made a decision.</p>
{else}
<p>Shortly, you will receive an e-mail with your initial password.</p>
{/if}
<p>Once you've received your password, click <a href="login.php">here</a> to login.</p>
</div>
</div>
</div>
{else}
<div class="row">
<div class="span8 offset2">
<div class="alert alert-info">
<p>Complete the form below and click Submit.</p>
{if $opt.newuser_requires_approval}
<p>The list administrators will be notified of your request by e-mail and will approve or decline your request.
</p>
<p>If the e-mail address you supply is valid, you will be notified once a decision is made.</p>
{else}
<p>If the e-mail address you supply is valid, you will shortly receive an e-mail with your initial password.</p>
{/if}
</div>
</div>
</div>
<div class="row">
<div class="span8 offset2">
<form name="signupform" id="signupform" method="post" action="signup.php" class="well form-horizontal">
<input type="hidden" name="action" value="signup">
<fieldset>
<legend>Sign Up for the Gift Registry</legend>
<div class="control-group">
<label class="control-label" for="username">Username</label>
<div class="controls">
<input id="username" name="username" type="text" class="input-xlarge" value="{$username|escape:'htmlall'}" placeholder="Username">
</div>
</div>
<div class="control-group">
<label class="control-label" for="fullname">Full name</label>
<div class="controls">
<input id="fullname" name="fullname" type="text" class="input-xlarge" value="{$fullname|escape:'htmlall'}" placeholder="Full name">
</div>
</div>
<div class="control-group">
<label class="control-label" for="email">E-mail address</label>
<div class="controls">
<input id="email" name="email" type="text" class="input-xlarge" value="{$email|escape:'htmlall'}" placeholder="you@somewhere.com">
</div>
</div>
{if $familycount > 1}
<div class="control-group">
<label class="control-label" for="familyid">Family</label>
<div class="controls">
<select name="familyid">
<option value="">(select one)</option>
{foreach from=$families item=row}
<option value="{$row.familyid}">{$row.familyname|escape:'htmlall'}</option>
{/foreach}
</select>
</div>
</div>
{else}
<input type="hidden" name="familyid" value="{$familyid}">
{/if}
<div class="form-actions">
<button type="submit" class="btn btn-primary">Submit</button>
<button type="button" class="btn" onClick="document.location.href='login.php';">Cancel</button>
</div>
</fieldset>
</form>
</div>
</div>
{/if}
</div>
</body>
</html>