-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
41 lines (34 loc) · 1 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes">
<title>gold-elements checkout form demo</title>
<script src="bower_components/webcomponentsjs/webcomponents-lite.js"></script>
<link rel="stylesheet" href="bower_components/paper-styles/paper-styles.html">
<link rel="import" href="bower_components/paper-styles/demo-pages.html">
<link rel="import" href="simple-form.html">
<link rel="import" href="complex-form.html">
</head>
<style>
.horizontal-section {
max-width: 400px;
margin-bottom: 40px;
}
</style>
<body>
<div class="horizontal center-justified layout wrap">
<div>
<div class="horizontal-section">
<simple-form></simple-form>
</div>
</div>
<div>
<div class="horizontal-section">
<complex-form></complex-form>
</div>
</div>
</div>
</body>
</html>