Moved Thymeleaf-templates to src/main/webapp to enable hot reload
[examples/facebook-app] / src / main / webapp / thymeleaf / connect / facebookConnect.html
diff --git a/src/main/webapp/thymeleaf/connect/facebookConnect.html b/src/main/webapp/thymeleaf/connect/facebookConnect.html
new file mode 100644 (file)
index 0000000..5e275d8
--- /dev/null
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
+  <head>
+    <title>Connect to Facebook</title>
+  </head>
+  <body>
+    <h1>Connect to Facebook</h1>
+    <form action="#" th:action="@{/connect/facebook}" method="POST">
+      <div class="formInfo">
+        <p>
+          You aren't connected to Facebook yet.
+          Click the button to connect with your Facebook account.
+        </p>
+      </div>
+      <p><button type="submit">Connect to Facebook</button></p>
+    </form>
+  </body>
+</html>