-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (48 loc) · 2.03 KB
/
Copy pathindex.html
File metadata and controls
54 lines (48 loc) · 2.03 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<title>Algorithmia V-day Demo</title>
<link rel="shortcut icon" href="<%= slug %>/public/images/favicon-bw.png" type="image/png">
<link rel="stylesheet" media="screen" href="<%= slug %>/public/css/algo.min.css" type="text/css">
<link rel="stylesheet" media="screen" href="<%= slug %>/public/css/bootstrap3.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script>
<script src="<%= slug %>/public/js/algorithmia.js"></script>
<script src="<%= slug %>/public/js/d3.min.js" type="text/javascript"></script>
<script src="<%= slug %>/public/js/algorithmia.d3.js" type="text/javascript"></script>
<script src="<%= slug %>/public/js/algorithmia.data.js" type="text/javascript"></script>
<script src="<%= slug %>/public/js/main.js" type="text/javascript"></script>
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" />
<style>
select, input {
width: 140px;
}
.vcard {
font-size: 18px;
min-height: 400px;
border: 4px solid #555;
margin-top: 20px;
padding: 16px;
}
</style>
<head>
<body>
<div class="well" ng-app="algorithmia" ng-controller="VDayControl" id="sitemapControl">
<header>Algorithmia Valentines Generator</header>
<!-- Inputs -->
<form ng-submit="gen()">
<label>Enter your lover's name</label>
<div>
<input type="text" class="form-control inline-form-control" ng-model="vname">
<input type="submit" class="btn btn-primary" value="Generate">
<span class="aspinner algo-spinner"></span>
<span id="demo-status"></span>
</div>
</form>
<!-- Outputs -->
<div class="vcard" ng-bind="vcard">
</div>
</div>
</body>
</html>