-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
169 lines (146 loc) · 6.53 KB
/
contact.html
File metadata and controls
169 lines (146 loc) · 6.53 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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html>
<html>
<head>
<title> PurpleKrypt | Contact & Report </title>
<link data-default-icon="imgs/favicon.png" rel="icon" sizes="192x192" href="imgs/PurpleKrypt_Icon_192x192.png" />
<meta name="viewport" content="width=device-width, initial-scale=0.8, shrink-to-fit=yes">
<meta charset="utf-8">
</head>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-HM2Y8ZN2PM"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-HM2Y8ZN2PM');
</script>
<link rel="stylesheet" href="styles/fonts.css"/>
<link rel="stylesheet" href="styles/universal.css"/>
<style type="text/css">
t {
margin-top:20px;
margin-bottom:20px;
}
.restricted_width_box {
padding: 20px;
padding-top: 0px;
max-width: 850px;
}
</style>
<body>
<!-- Navigation Bar Start-->
<div id="nav_bar">
<a href="index.html"><div id="nav_logo"><img style="height:100%;" src="imgs/PurpleKrypt_Logo_Name_36p.png"/></div></a>
<div id="nav_buttons_box_desktop">
<a href="about.html"><p class="nav_buttons"> About </p></a>
<a href="docs.html"><p class="nav_buttons"> Documentation </p></a>
<a href="https://github.com/PurpleKrypt"><p class="nav_buttons">Github</p></a>
<a href="credits.html"><p class="nav_buttons"> Credits </p></a>
</div>
<a href="download.html" ><div id="nav_download_button_box"><p id="nav_download_button"> Download </p></div></a>
<div id="nav_dropdown_button">
<svg id="nav_dropdown_more_icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30" width="40" height="40">
<rect x="5" y="5" width="20" height="2" fill="#E6E6E6"/><rect x="5" y="11" width="20" height="2" fill="#E6E6E6"/><rect x="5" y="17" width="20" height="2" fill="#E6E6E6"/>
</svg>
<svg id="nav_dropdown_close_icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
<rect x="1" y="10" width="16" height="2" fill="#ffffff" transform="rotate(45 12 12)"/><rect x="8" y="3" width="2" height="16" fill="#ffffff" transform="rotate(45 12 12)"/>
</svg>
</div>
</div>
<div id="nav_dropdown_content">
<a href="about.html">About</a>
<a href="docs.html">Documentation</a>
<a href="https://github.com/PurpleKrypt">Github</a>
<a href="credits.html">Credits</a>
<a href="download.html">Download</a>
</div>
<script type="text/javascript">
// nav dropdown toggle script
const dropdownButton = document.getElementById('nav_dropdown_button');
const dropdownContent = document.getElementById('nav_dropdown_content');
const dropdownClose = document.getElementById('nav_dropdown_close_icon');
const dropdownMore = document.getElementById('nav_dropdown_more_icon');
dropdownButton.addEventListener('click', function() {
if (dropdownContent.style.display === 'block') {
dropdownContent.style.display = 'none';
dropdownClose.style.display = 'none';
dropdownMore.style.display = 'block';
} else {
dropdownContent.style.display = 'block';
dropdownClose.style.display = 'block';
dropdownMore.style.display = 'none';
}
});
</script>
<!-- Navigation Bar End-->
<main>
<h1> Contact & Report </h1>
<div class="restricted_width_box" >
<t>
We value your feedback and are here to assist you! Please use the options below to reach out to us or submit your information.
<t/>
</br><hr/></br></br>
<h5>1. Get in Touch</h5>
<t>
If you have any inquiries or need assistance, feel free to reach out to us at:
<t/>
<a href="mailto:sas.roset@gmail.com" class="link"><p><b>Email:</b> purplekrypt@gmail.com<p/></a>
</br><hr/></br></br>
<h5>2. Star Us</h5>
<t>
If you like the project and find the project useful, feel free to star the PurpleKrypt Github repository. We would appreciate it:
<t/>
<a href="https://github.com/PurpleKrypt/PurpleKrypt" class="link"><p>PurpleKrypt Github Repo<p/></a>
</br><hr/></br></br>
<h5>3. Request New Features</h5>
<t>
Do you have an idea for a new feature or enhancement? Let us know! To request a feature, you can open a GitHub issue on the respective repository and tell us about
the new feature or improvement you have in mind.
<t/>
</br><hr/></br></br>
<h5>5. Report a Bug</h5>
<t>
If you encounter any bugs or issues, we greatly appreciate you sharing it with us and your help in improving the software. To report a bug, you can open a GitHub issue on the respective repository,
and provide details of the issue you are facing and the steps required to recreate the issue or bug.
<t/>
</br><hr/></br>
<t>
We appreciate your input and will do our best to respond or address your submission promptly! Thank you for being part of our community.
<t/>
</br><hr/></br></br>
</div>
</br></br>
</main>
<footer>
<div id="footer_serp"></div>
<p style="font-size:20px; margin-top:50px"><bg>Made with passion by </bg><a href="https://saaiqsas.github.io" class="footer_saaiqSAS"> saaiqSAS</a><bg> and Contributors</bg></p>
<br/>
<ft id="copyrights">Copyrights (©) 2024 Saaiq Abdulla Saeed</ft>
<ft>This website and its contents are generally licensed under the <a href="LICENSE.md">MIT License</a>, unless stated otherwise.</ft>
<div class="grid3_box" id="footer_grid">
<div>
<fh>Project Info</fh>
<ft><a href="about.html">About Project</a></ft>
<ft><a href="credits.html">Credits & Contributers</a></ft>
<ft><a href="docs.html">Documentation</a></ft>
</div>
<div>
<fh>Get Involved</fh>
<ft><a href="download.html">Download</a></ft>
<ft><a href="contribute.html">Contribute</a></ft>
<ft><a href="https://github.com/PurpleKrypt">Github</a></ft>
</div>
<div>
<fh>Legal & Support</fh>
<ft><a href="legal/privacy_policy.html">Privacy Policy</a></ft>
<ft><a href="legal/terms.html"> Terms and Conditions</a></ft>
<ft><a href="contact.html"> Contact & Report</a></ft>
</div>
</div>
<script type="text/javascript">
// Copyrights
var currentYear = new Date().getFullYear();
document.getElementById('copyrights').textContent = "Copyrights (©) "+currentYear + " Saaiq Abdulla Saeed";
</script>
</footer>
</body>
</html>