more validation
This commit is contained in:
parent
e9eb8fc8e0
commit
e4064c3fec
2 changed files with 63 additions and 8 deletions
|
@ -21,6 +21,31 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<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.min.css" rel="stylesheet">
|
||||||
<link href="bootstrap/css/bootstrap-responsive.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() {
|
||||||
|
$("#theform").validate({
|
||||||
|
highlight: validate_highlight,
|
||||||
|
success: validate_success,
|
||||||
|
rules: {
|
||||||
|
familyname: {
|
||||||
|
required: true,
|
||||||
|
maxlength: 255
|
||||||
|
}
|
||||||
|
},
|
||||||
|
messages: {
|
||||||
|
familyname: {
|
||||||
|
required: "Family name is required.",
|
||||||
|
maxlength: "Family name must be 255 characters or less."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
{include file='navbar.tpl' isadmin=$isadmin}
|
{include file='navbar.tpl' isadmin=$isadmin}
|
||||||
|
@ -78,7 +103,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
<a name="familyform">
|
<a name="familyform">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="span6">
|
<div class="span6">
|
||||||
<form name="family" method="get" action="families.php" class="well form-horizontal">
|
<form name="theform" id="theform" method="get" action="families.php" class="well form-horizontal">
|
||||||
{if $action == "edit" || (isset($haserror) && $action == "update")}
|
{if $action == "edit" || (isset($haserror) && $action == "update")}
|
||||||
<input type="hidden" name="familyid" value="{$familyid}">
|
<input type="hidden" name="familyid" value="{$familyid}">
|
||||||
<input type="hidden" name="action" value="update">
|
<input type="hidden" name="action" value="update">
|
||||||
|
@ -133,8 +158,5 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
|
|
||||||
<script src="bootstrap/js/bootstrap.min.js"></script>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -21,6 +21,41 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<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.min.css" rel="stylesheet">
|
||||||
<link href="bootstrap/css/bootstrap-responsive.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() {
|
||||||
|
$("#receiverform").validate({
|
||||||
|
highlight: validate_highlight,
|
||||||
|
success: validate_success,
|
||||||
|
rules: {
|
||||||
|
buyer: {
|
||||||
|
required: true
|
||||||
|
},
|
||||||
|
quantity: {
|
||||||
|
required: true,
|
||||||
|
digits: true,
|
||||||
|
min: 1,
|
||||||
|
max: {$quantity}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
messages: {
|
||||||
|
buyer: {
|
||||||
|
required: "Please select a buyer."
|
||||||
|
},
|
||||||
|
quantity: {
|
||||||
|
required: "Please enter the quantity you received.",
|
||||||
|
digits: "Quantity must be a valid number.",
|
||||||
|
min: "Quantity must be 1 or greater.",
|
||||||
|
max: "Quantity must be {$quantity} or less."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
{include file='navbar.tpl' isadmin=$isadmin}
|
{include file='navbar.tpl' isadmin=$isadmin}
|
||||||
|
@ -28,7 +63,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
<div class="container" style="padding-top: 60px;">
|
<div class="container" style="padding-top: 60px;">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="span8 offset2">
|
<div class="span8 offset2">
|
||||||
<form name="receiver" method="get" action="receive.php" class="well form-horizontal">
|
<form name="receiverform" id="receiverform" method="get" action="receive.php" class="well form-horizontal">
|
||||||
<input type="hidden" name="action" value="receive">
|
<input type="hidden" name="action" value="receive">
|
||||||
<input type="hidden" name="itemid" value="{$itemid}">
|
<input type="hidden" name="itemid" value="{$itemid}">
|
||||||
<fieldset>
|
<fieldset>
|
||||||
|
@ -37,6 +72,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
<label class="control-label" for="buyer">Buyer</label>
|
<label class="control-label" for="buyer">Buyer</label>
|
||||||
<div class="controls">
|
<div class="controls">
|
||||||
<select id="buyer" name="buyer" class="input-xlarge">
|
<select id="buyer" name="buyer" class="input-xlarge">
|
||||||
|
<option value="">(select buyer)</option>
|
||||||
{foreach from=$buyers item=row}
|
{foreach from=$buyers item=row}
|
||||||
<option value="{$row.userid}">{$row.fullname|escape:'htmlall'}</option>
|
<option value="{$row.userid}">{$row.fullname|escape:'htmlall'}</option>
|
||||||
{/foreach}
|
{/foreach}
|
||||||
|
@ -59,8 +95,5 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
|
|
||||||
<script src="bootstrap/js/bootstrap.min.js"></script>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue