-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.html
25 lines (22 loc) · 898 Bytes
/
form.html
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
<!DOCTYPE html>
<html>
<head>
<title>Todo</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<link rel="stylesheet" href="https://unpkg.com/formiojs@latest/dist/formio.full.min.css">
</head>
<body ng-app="app-user" ng-controller="formCtrl">
{{submission}}
<br><br>
<div class="container">
<div class="row">
<formio src="'https://gaenxikuakdsnzf.form.io/login'" submission="submission"></formio>
</div>
</div>
<script src="https://rawgit.com/formio/ngFormio/master/dist/formio-full.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js"></script>
<script src="js/app/app.js"></script>
<script src="js/app/controller/form-ctrl.js"></script>
</body>
</html>