-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathapp.html
More file actions
38 lines (36 loc) · 939 Bytes
/
app.html
File metadata and controls
38 lines (36 loc) · 939 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
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="theme-color" content="#000000" />
<title>PCI Proxy Web Tokenization</title>
<script src="./index.js" type="text/javascript" charset="utf-8" async defer></script>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="app"></div>
<style>
/* The following styles are NOT required */
html, body {
font-family: Arial, Helvetica, sans-serif;
}
label {
font-weight: bold;
font-size: 0.9rem;
line-height: 1.5rem;
}
button {
border: none;
background-color: #06bd6e;
color: white;
padding: 7px 12px;
font-size: 1rem;
cursor: pointer;
}
</style>
</body>
</html>