-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (65 loc) · 3.02 KB
/
index.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
67
68
69
70
71
72
73
74
75
76
77
78
79
<!doctype html>
<html ng-app>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular.min.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Taviraj">
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2pdf.js/0.10.1/html2pdf.bundle.min.js" integrity="sha512-GsLlZN/3F2ErC5ifS5QtgpiJtWd43JWSuIgh7mbzZ8zBps+dvLusV+eNQATqgA/HdeKFVgA5v3S/cIrLF7QnIg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<title>Mobiz-Advanced-Cease-And-Desist-Generator</title>
<style>
html {
padding: 25px;
background: ghostwhite;
}
hr {
margin: 25px;
}
* {
text-align: justify;
text-justify: inter-word;
font-family: taviraj;
}
.inputs, h1 {
text-align: center;
}
span {
padding: 25px;
display: block;
height: fit-content;
}
</style>
</head>
<body>
<div>
<h1>
Mobiz-Advanced-Cease-And-Desist-Generator
</h1>
<div class="inputs">
<input type="text" ng-model="infringingParty" placeholder="Infringing Party">
<input type="text" ng-model="infringedWork" placeholder="Infringed Work">
<input type="date" ng-model="removalTimeframe" placeholder="Removal Time frame">
<input type="text" ng-model="yourName" placeholder="Your Name">
<input type="text" ng-model="yourTitle" placeholder="Your Title">
<input type="text" ng-model="yourCompanyName" placeholder="Your Company Name">
<button onclick="html2pdf(document.getElementById('span'));">
Save To PDF
</button>
</div>
<hr>
<span id="span">
<h1 style=" text-align: left;">
Notice To Cease And Desist
</h1>
Dear <b>{{infringingParty}}</b>, <br><br>
It has come to our attention that you have been reproducing, distributing, and/or publicly displaying our copyrighted work titled "{{infringedWork}}" without authorization. This conduct constitutes copyright infringement in violation of federal law.<br><br>
We demand that you immediately cease and desist from infringing our copyrights by halting all reproduction, distribution, and public display of "{{infringedWork}}". You must also remove any infringing materials from your website, social media accounts, or other platforms within {{removalTimeframe}}.<br><br>
Please be advised that we take this matter seriously and will not hesitate to take legal action if necessary to protect our intellectual property rights. We reserve the right to seek injunctive relief, damages, and attorneys’ fees for any continued infringement.<br><br>
If you have any questions or concerns about this matter, please contact us immediately to discuss a resolution.<br><br>
Sincerely,<br><br>
<b>{{yourName}}</b><br>
{{yourTitle}}<br><br>
{{yourCompanyName}}
</span>
<hr>
</div>
</body>
</html>