-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJSstringprocess.html
More file actions
29 lines (29 loc) · 874 Bytes
/
JSstringprocess.html
File metadata and controls
29 lines (29 loc) · 874 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
26
27
28
29
<!DOCTYPE html>
<html>
<head>
<title></title>
<script src="Scripts/angular.js"></script>
<script src="Scripts/Script.js"></script>
<script src="Scripts/stringService.js"></script>
<link href="css/bootstrap.min.css" rel="stylesheet" />
</head> <body ng-app="myModule">
<div ng-controller="myController">
<table>
<tr>
<td>Your String</td>
<td><input type="text" ng-model="input" /> </td>
</tr>
<tr>
<td>Result</td>
<td><input type="text" ng-model="output" /></td>
</tr>
<tr>
<td></td>
<td>
<input type="button" ng-click="transformString(input)" value="Process String" />
</td>
</tr>
</table>
</div>
</body>
</html>