Skip to content

Instantly share code, notes, and snippets.

View y2k4life's full-sized avatar

Guy y2k4life

  • The Cloud
View GitHub Profile
@y2k4life
y2k4life / app.html
Last active September 10, 2019 00:58
Aurelia Interger Range Validation Example in Documentatoin
<template>
<div>
<a href="http://aurelia.io/hub.html#/doc/article/aurelia/validation/latest/validation-basics/9" target="top">Documentation</a>
</div>
<form submit.delegate="submit()" novalidate autocomplete="off">
<!--<ul><li repeat.for="error of controller.errors">${error.message}</li></ul>-->
<div class="form-group">
<label class="control-label" for="volumeA">A) Integer Range Validation Example In Documentation</label>
<input type="text" class="form-control" id="volumeA" value.bind="volumeA & validate">
@y2k4life
y2k4life / app.html
Last active September 3, 2016 18:07
Aurelia Date Validation Example in Documentatoin
<template>
<div>
<a href="http://aurelia.io/hub.html#/doc/article/aurelia/validation/latest/validation-basics/9" target="top">Documentation</a>
</div>
<form submit.delegate="submit()" novalidate autocomplete="off">
<!--<ul><li repeat.for="error of controller.errors">${error.message}</li></ul>-->
<div class="form-group">
<label class="control-label" for="startDateA">A) Date Validation Example In Documentation</label>
<input type="text" class="form-control" id="startDateA" value.bind="startDateA & validate">