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
68 lines (62 loc) · 2.27 KB
/
form.html
File metadata and controls
68 lines (62 loc) · 2.27 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!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.6.0/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>
<mui-form name="form1">
<legend>Title</legend>
<mui-input name="inputA1" ng-model="form1.inputA"></mui-input>
<mui-button color="primary">submit</mui-button>
</mui-form>
</mui-panel>
<mui-panel>
<mui-form name="form2">
<fieldset>
<legend>Fieldset1</legend>
<mui-input name="inputC1x" ng-model="form3.inputC1"></mui-input>
<mui-input name="inputC2x" ng-model="form3.inputC2"></mui-input>
</fieldset>
<fieldset>
<legend>Fieldset2</legend>
<mui-input name="inputC3x" ng-model="form3.inputC4"></mui-input>
<mui-input name="inputC4x" ng-model="form3.inputC4"></mui-input>
</fieldset>
<mui-button color="primary">submit</mui-button>
</mui-form>
</mui-panel>
<mui-panel>
<mui-form name="form3" inline>
<legend>Title</legend>
<mui-input name="inputB1" ng-model="form2.inputB"></mui-input>
<mui-button color="primary">submit</mui-button>
</mui-form>
</mui-panel>
<mui-panel>
<mui-form name="form4" inline>
<fieldset>
<legend>Fieldset1</legend>
<mui-input name="inputC1x" ng-model="form3.inputC1"></mui-input>
<mui-input name="inputC2x" ng-model="form3.inputC2"></mui-input>
</fieldset>
<fieldset>
<legend>Fieldset2</legend>
<mui-input name="inputC3x" ng-model="form3.inputC4"></mui-input>
<mui-input name="inputC4x" ng-model="form3.inputC4"></mui-input>
</fieldset>
<mui-button color="primary">submit</mui-button>
</mui-form>
</mui-panel>
</mui-container>
</body>
</html>