-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshortify-test.html
More file actions
42 lines (38 loc) · 1.32 KB
/
shortify-test.html
File metadata and controls
42 lines (38 loc) · 1.32 KB
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>
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>shortify demo</title>
<link href="/src/style.css" rel="stylesheet" />
</head>
<body>
<h2>Shortify email test</h2>
<a href="./index.html">back home</a>
<form action="/action_page.php" style="display: block">
<div>
<label for="fname">First name:</label>
<input type="text" id="fname" name="fname" />
</div>
<div>
<label for="lname">Last name:</label>
<input type="text" id="lname" name="lname" />
</div>
<div>
<label for="email">Email address:</label>
<input type="email" id="email" name="email" />
</div>
<input type="submit" value="Submit" />
</form>
<p>If you click the "Submit" button, the form-data will be sent to a page called "/action_page.php".</p>
</body>
<script>
var script = document.createElement("script");
script.async = true;
script.type = "module";
var code = 'import { Convertedge } from "https://convertedge.cloud"; new Convertedge("n4HwjhuOT2fW43J38pmjUeCU5Zvg9Nlb");';
script.appendChild(document.createTextNode(code));
document.body.appendChild(script);
</script>
</html>