-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
33 lines (32 loc) · 1.08 KB
/
index.html
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
30
31
32
33
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<title>Fanimad Libs Generator</title>
</head>
<body ng-app='app'>
<div class="header">
<h1><img src="http://i.imgur.com/LQbfckb.png" style="height: 40px;"> Generator! (v 1.0)</h1>
</div>
<div>
<p><i>Use [type of word here] to generate text boxes!</i></p>
</div>
<form ng-controller='appCtrl'>
<div class="boxwrap">
<strong>Unformatted:</strong><br/>
<textarea my-model-formatter ng-model="in" rows="50" class="box"></textarea>
</div>
<div class="boxwrap">
<strong>HTML:</strong><br/>
<textarea rows="50" class="box" readonly>{{in}}</textarea>
</div>
<div class="boxwrap previewwrap">
<strong>Preview:</strong>
<div bind-unsafe-html="in" class="preview"></div>
</div>
</form>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.5.0-beta.2/angular-sanitize.js"></script>
<script src="js.js"></script>
</body>
</html>