You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
870 B
30 lines
870 B
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Demo | Tiny Validator</title>
|
|
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline';" />
|
|
<link href="styles.css" rel="stylesheet" type="text/css">
|
|
</head>
|
|
<body>
|
|
<form class="form" novalidate>
|
|
<div class="field">
|
|
<label>
|
|
email
|
|
<input type="email" name="email" />
|
|
</label>
|
|
<field-error name="email"></field-error>
|
|
</div>
|
|
<div class="field">
|
|
<label>
|
|
password
|
|
<input type="password" name="password" />
|
|
</label>
|
|
<field-error name="password"></field-error>
|
|
</div>
|
|
<button type="submit">Send</button>
|
|
</form>
|
|
<script type="text/javascript" src="demo.js"></script>
|
|
</body>
|
|
</html>
|