-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (39 loc) · 1.37 KB
/
index.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<body>
<form mu-widget="inline-example/widget">
<div class="field-wrapper">
<div class="field-wrapper">
<label for="country">Country</label>
<select id="country" data-country-selected="US">
<option value="CA">Canada</option>
<option value="FR">France</option>
<option value="JP">Japan</option>
<option value="GB">United Kingdom</option>
<option value="US" selected>United States</option>
<option value="ZW">Zimbabwe</option>
</select>
</div>
</div>
<div id="locality-fields">
<div class="field-wrapper">
<label for="city">City</label>
<input type="text" id="city" />
</div>
<div class="field-wrapper">
<label for="state">Administrative Area</label>
<input type="text" id="state" />
</div>
<div class="field-wrapper">
<label for="zip">Postal Code</label>
<input type="text" id="zip" />
</div>
</div>
<button type="submit">submit</button>
</form>
</body>
<script src="https://cdn.jsdelivr.net/combine/npm/[email protected],npm/[email protected],npm/[email protected]"></script>
<script src="../../widget.js"></script>
<script src="widget.js"></script>
<script src="https://cdn.jsdelivr.net/gh/mu-lib/[email protected]/examples/quickstart-umd/app.js"></script>
</html>