-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (24 loc) · 715 Bytes
/
index.html
File metadata and controls
25 lines (24 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<html>
<head>
<title>ng-forms-feedback</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.min.css">
<link rel="stylesheet" href="main.css">
</head>
<body ng-app="example">
<form action="">
<h2>ng-forms-feedback example</h2>
<br>
Name:
<input nff-min="15" type="text">
Password:
<input nff-min="6" type="password">
Email:
<input nff-min="12" type="email">
Website:
<input nff-min="8" type="url">
</form>
<script src="src/lib/angular/angular.min.js"></script>
<script src="dist/ng-form-feedback.min.js"></script>
<script src="main.js"></script>
</body>
</html>