-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path10.html
More file actions
23 lines (23 loc) · 724 Bytes
/
10.html
File metadata and controls
23 lines (23 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html ng-app="app">
<head>
<meta charset="UTF-8">
<title>local storage</title>
</head>
<body ng-controller="appcontroller">
<div ng-repeat="record in datos">
<h1>
{{record.title}}
</h1>
<strong>{{record.body}}</strong>
</div>
<form ng-submit="guardar()">
<input type="text" ng-model="nuevodato.title"/>
<input type="text" ng-model="nuevodato.body"/>
<button >Guardar</button>
</form>
<button ng-click="borrar()">Limpiar</button>
<script src="/bower_components/angular/angular.js"></script>
<script src="Controller6.js"></script>
<script src="/bower_components/angular-local-storage/dist/angular-local-storage.min.js"></script>
</body>
</html>