Skip to content

Instantly share code, notes, and snippets.

@geykel
Created May 19, 2017 15:01
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save geykel/8ec6677228fd26e915cc4e363512d59e to your computer and use it in GitHub Desktop.
Save geykel/8ec6677228fd26e915cc4e363512d59e to your computer and use it in GitHub Desktop.
<ion-header>
<ion-navbar>
<ion-title>Registrarse</ion-title>
</ion-navbar>
</ion-header>
<ion-content>
<form>
<ion-list>
<ion-item>
<ion-label stacked>Correo electrónico</ion-label>
<ion-input type="email" autocorrect="off" autocapitalize="none" name="email" pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,3}$"
required></ion-input>
</ion-item>
<ion-item>
<ion-label stacked>Contraseña</ion-label>
<ion-input type="password" name="password" required minlength="6"></ion-input>
</ion-item>
<div padding-left padding-right padding-top>
<button ion-button block>Registrarse</button>
</div>
</ion-list>
</form>
</ion-content>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment