forked from ryanv94/nrugLogDemo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfood.html
66 lines (53 loc) · 1.89 KB
/
food.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.0/css/bulma.min.css">
<script src="./script.js"></script>
<title>NRUG Logs Demo</title>
</head>
<body>
<section class="section">
<div class="container">
<figure class="image">
<img src="nrLogo.png" alt="New Relic Logo" style="max-width:40%">
</figure>
</div>
<section class="hero is-link is-bold" style="margin-top: 30px;">
<div class="hero-body">
<div class="container">
<h1 class="title">
New Relic Logs Demo. Please submit your preferences.
</h1>
</div>
</div>
</div>
</section>
<hr>
<div class="field">
<label class="label">Enter your name, pizza preference, and drink preference.</label>
<div class="control">
<input class="input" type="text" value='{ "name": "", "pizza": "", "drink":"" }'' id="orderPreference">
</div>
</div>
<section class="hero is-info is-bold">
<div class="hero-body">
<div class="container">
<h1 class="title">
<button onclick='submit(this);' class="button is-danger is-outlined" id="submit">SUBMIT </button>
</h1>
<h2 class="title">
Submit as many times as you would like :)
</h2>
<div class="buttons">
<h1 class="title">
<button onclick='prevPage()' class="button is-danger is-outlined">Prev Step</button>
</h1>
</div>
</div>
</div>
</section>
</section>
</body>
</html>