Browse Source

static html directory

Davide Alberani 9 years ago
parent
commit
b67354c67a
2 changed files with 16 additions and 0 deletions
  1. 1 0
      static/html/README.txt
  2. 15 0
      static/html/index.html

+ 1 - 0
static/html/README.txt

@@ -0,0 +1 @@
+Put here your static HTML files.

+ 15 - 0
static/html/index.html

@@ -0,0 +1,15 @@
+<!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>