eventman/angular_app/index.html

17 lines
369 B
HTML
Raw Normal View History

2015-03-14 17:32:16 +01:00
<!doctype html>
<html ng-app>
<head>
<script src="/static/js/angular.min.js"></script>
<title>Event Man(ager)</title>
</head>
<body>
<div>
<p>1 + 2 = {{ 1 + 2 }}</p>
<label>Name:</label>
<input type="text" ng-model="yourName" placeholder="Enter a name here">
<hr>
<h1>Hello {{yourName}}!</h1>
</div>
</body>
</html>