15 lines
337 B
HTML
15 lines
337 B
HTML
<!doctype html>
|
|
<html ng-app>
|
|
<head>
|
|
<script src="/static/js/angular.min.js"></script>
|
|
<title>Event Man(ager)</title>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<label>Name:</label>
|
|
<input type="text" ng-model="yourName" placeholder="Enter a name here">
|
|
<hr>
|
|
<h1>Hello {{yourName}}!</h1>
|
|
</div>
|
|
</body>
|
|
</html>
|