Last active
December 12, 2015 05:18
-
-
Save yesez/4720508 to your computer and use it in GitHub Desktop.
Demo de Garlic.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="es"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Demo Garlic</title> | |
<!--[if IE 7]> | |
<script src="js/localstorageshim.min.js" type="text/javascript"></script> | |
<![endif]--> | |
<script src="js/jquery-1.8.2.min.js" type"text/javascript"></script> | |
<script src="js/garlic.min.js" type="text/javascript"></script> | |
<style type="text/css"> | |
body{ | |
font-family: 'Segoe UI', Helvetica, Arial; | |
} | |
.form-label{ | |
font-weight: bolder; | |
} | |
</style> | |
</head> | |
<body> | |
<h1>Datos Personales</h1> | |
<form data-persist="garlic" method="POST"> | |
<label class="form-label" for="Nombre">Nombre Completo</label> | |
<br /> | |
<input id="Nombre" name="Nombre" type="text" /> | |
<br /> | |
<span class="form-label">Sexo</span> | |
<br /> | |
<input type="radio" name="sexo" value="M">Masculino | |
<input type="radio" name="sexo" value="F">Femenino | |
<br /><br /> | |
<input type="submit" value="Guardar Datos" > | |
</form> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment