-
Notifications
You must be signed in to change notification settings - Fork 0
/
invoice.html
27 lines (26 loc) · 1.02 KB
/
invoice.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
<!DOCTYPE html>
<html>
<head>
<title>New 632VGS Invoice</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
</head>
<body>
<script src="https://unpkg.com/tripetto-runner-foundation"></script>
<script src="https://unpkg.com/tripetto-runner-classic"></script>
<script src="https://unpkg.com/tripetto-services"></script>
<script>
var tripetto = TripettoServices.init({ token: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoiTFQ1V2JpNWZ3b0t2VkxMZWJqZ0dBVlZJMXY5K2MrazI0N3d5VjNRK2t6WT0iLCJkZWZpbml0aW9uIjoiSkVyY3Foa1ZrNTlBNlpuaUlvYVplN1RqTTVwdkpzc1g1WVNabENTRDQ3dz0iLCJ0eXBlIjoiY29sbGVjdCJ9.IsFDo5aA_s2LyYRH0AjX5OtZTIaqSXUKUEpr4qHAijE" });
TripettoClassic.run({
element: document.body,
definition: tripetto.definition,
styles: tripetto.styles,
l10n: tripetto.l10n,
locale: tripetto.locale,
translations: tripetto.translations,
attachments: tripetto.attachments,
onSubmit: tripetto.onSubmit
});
</script>
</body>
</html>