-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.html
34 lines (34 loc) · 1.11 KB
/
form.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
<!doctype html>
<html>
<head>
<title>Form Page</title>
<script src="https://www.datadoghq-browser-agent.com/us1/v5/datadog-rum.js" type="text/javascript"></script>
<script>
window.DD_RUM && window.DD_RUM.init({
clientToken: 'pub2d7c61355858c123e3cf97bc7fb9c9b0',
applicationId: '977c6441-91e6-40a5-acf1-1a70587dd73a',
site: 'datadoghq.com',
service: 'rumdemoapp',
env: 'dev',
sessionSampleRate: 100,
sessionReplaySampleRate: 100,
trackUserInteractions: true,
trackResources: true,
trackLongTasks: true,
defaultPrivacyLevel: 'mask-user-input'
});
</script>
</head>
<body>
<h1>Input Form</h1>
<form action="#">
<label for="name">Name:</label><br>
<input type="text" id="name" name="name"><br>
<label for="email">Email:</label><br>
<input type="email" id="email" name="email"><br><br>
<input type="button" value="Submit" onclick="alert('This is a fake submission!')">
</form>
<br>
<button onclick="location.href='index.html'">Back to Main Page</button>
</body>
</html>