forked from muicss/mui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
32 lines (30 loc) · 1003 Bytes
/
form.html
File metadata and controls
32 lines (30 loc) · 1003 Bytes
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
26
27
28
29
30
31
32
<!doctype html>
<html ng-app="mui">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- for example only -->
<script src="../assets/vendor/angular/1.5.7/angular.js"></script>
<!-- end -->
<link rel="stylesheet" type="text/css" href="../assets/mui/css/mui.css"/>
<script src="../assets/mui/angular/mui-angular.js"></script>
</head>
<body>
<mui-container>
<h1>Form</h1>
<mui-panel>
<form name="form1">
<mui-input name="inputA1" ng-model="form1.inputA"></mui-input>
<mui-button color="primary">submit</mui-button>
</form>
</mui-panel>
<mui-panel>
<form name="form2" mui-form-inline>
<mui-input name="inputB1" ng-model="form2.inputB"></mui-input>
<mui-button color="primary">submit</mui-button>
</form>
</mui-panel>
</mui-container>
</body>
</html>