]> ruin.nu Git - ndwebbie.git/blobdiff - root/src/settings/index.tt2
Allow users to store their birthday
[ndwebbie.git] / root / src / settings / index.tt2
index 62478b1ac551cf49c811993f1050782149983e5f..d52509a1f49466f07d8496a15e7d558c15ae8157 100644 (file)
@@ -9,6 +9,11 @@
        <br>
        <input type="submit" value="Change">
 </fieldset></form>
+<form action="[% c.uri_for('changeBirthday') %]" method="post"><fieldset> <legend>Birthday</legend>
+       YYYY-MM-DD:
+       <input type="text" name="birthday" value="[% birthday %]" id="birthday">
+       <br><input type="submit" value="Change">
+</fieldset></form>
 <form action="[% c.uri_for('changePassword') %]" method="post"> <fieldset> <legend>Change password</legend>
        <p>Old password: 
        <input type="password" name="oldpass" value="">
        </p>
 </fieldset>
 </form>
+[%- site.stylesheets = ['ui/ui.datepicker.css'] %]
+<script type="text/javascript" src="/static/ui/ui.core.min.js"></script>
+<script type="text/javascript" src="/static/ui/ui.datepicker.min.js"></script>
+
+<script type="text/javascript">
+$(document).ready(function(){
+       $("#birthday").datepicker({
+               yearRange: "-80:+0",
+               dateFormat: $.datepicker.ATOM,
+               firstDay: 1,
+               showOn: "both",
+       });
+});
+</script>