-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubmit.html
33 lines (27 loc) · 1.8 KB
/
submit.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
<!DOCTYPE html>
<html>
<head><meta charset="utf-8">
<title>Submit an Article</title>
<style type="text/css">body {
text-align: center;
}
.container {
margin: 100px auto;
width: 75%;
}
</style>
</head>
<body>
<div class="container">
<h1>Submit an Article</h1>
<p>The purpose of this site is to bypass censorship of the media by social media companies and allow you to share news articles on social media like Facebook.</p>
<form action="submit.php" method="POST"><label for="url">URL:</label> <input id="url" name="url" pattern="https?://.*" required="" type="url" /><br />
<br />
<input type="submit" value="Submit" /></form>
<p>Enter a valid URL in the text box above and it should appear as the last URL in the drop-down menu in the header. If that doesn't happen either your URL wasn't valid or you need to refresh the page.</p>
<p>Please be comprehensive about the 1992 look as I'm no programmer and worked on this as a dare to myself to see if I could find a way around the ban of news on social media in Canada. This is very much a work in progress so there's probably some bugs and other problems. It's also possible that your URL will not load as the method may be blocked by the creator of the original content, this is why there's a button to go to the actual page of the content you are trying to share, use it and explore the myriad of incredible content that is created by news agencies.</p>
<p>This is a project that was made with the profound belief that preventing news to be shared is deeply anti-democratic and could very well be unsafe as many people gather news on social media (ie: forest fires all around Canada)</p>
<p>For inquiries pleas contact <a href="mailto:[email protected]">[email protected]</a></p>
</div>
</body>
</html>