-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubmit.html
More file actions
123 lines (109 loc) · 4.66 KB
/
submit.html
File metadata and controls
123 lines (109 loc) · 4.66 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
<html>
<head>
<link rel="stylesheet" type="text/css" href="submit/style.css">
<link rel="icon" href="data/img/ui/icon.png" type="image/png" sizes="16x16 32x32">
<title>Submission - CreatureVerse Beta</title>
<p align="center"><a href="index.html"><img src="data/img/ui/creatureverse.png"alt="CreatureVerse" width="25%" /></a></p>
<meta content="Submission - CreatureVerse Beta" property="og:title" />
<meta content="Submit your own content to CreatureVerse here." property="og:description" />
<meta content="https://beta.creatureverse.net" property="og:url" />
<meta content="https://beta.creatureverse.net/data/img/ui/icon.png" property="og:image" />
<meta content="#B40404" data-react-helmet="true" name="theme-color" />
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<div class="nsfw_align">
<label class="switch">
<input type="checkbox" id="togBtn">
<div class="slider round"></div>
</label>
</div>
<body>
<div class="link" id="top">
<ol type="1">
<li><a href="#intro">Introduction</a></li>
<li><a href="#rules">Rules</a></li>
<li><a href="#submit">How to submit</a></li>
<ol type="a">
<li><a href="#template">Submission Template</a></li>
</ol>
</ol>
</div>
<a href="index.html"><img src="data/img/ui/back.png" alt="Back" height="30" width="100" /></a>
<div id="intro"></div>
<h1>Introduction</h1>
<div class="large-text">
<p>
So you want to submit your own page to the story? Well there are a few rules and guidelines you must follow in order to be approved! If you want to start your own story world instead <a href="submit/world.html" target="_blank">Click Here</a> for the needed template or if your interested in submitting your own original character <a href="submit/oc.html" target="_blank">Click Here</a> for the needed template.
</p>
</div>
<div id="rules"></div>
<h1>Rules</h1>
<div class="large-text">
<ol type="1">
<li>All submissions <i>must</i> follow the template layout! <a href="#template">Click Here</a></li>
<li>No sex. (Off scene or implied is ok.)</li>
<li>No AI Generated Text! (if caught you <b><i><u>WILL</u></i></b> be blacklisted from ever submitting again!!)</li>
<li>No Religious content. (Made up religions can be approved by me via CreatureVerse Forums.)</li>
<li>No Offensive language.</li>
</ol>
</div>
<div id="submit"></div>
<h1>How to submit</h1>
<div class="large-text">
<p>
If you agree to follow the rules laid out above you can send your submission to submit@creatureverse.net <a href="mailto:submit@creatureverse.net">Click Here</a>, on the CreatureVerse Official Discord Server <a href="https://discord.gg/sRvHD3k" target="_blank" rel="noopener noreferrer">Click here</a>, or on the CreatureVerse Forums <a href="https://forums.creatureverse.net/forums/submissions/" target="_blank" rel="noopener noreferrer">Click Here</a>!
</p>
<div id="template"></div>
</div>
<h4>Template layout</h4>
<div id="sfw" class="template-sfw">
<p>
Name(For the <a href="credits.html" target="_blank">credits</a> page): (Example: DragonsHeart447)
<br>
Page Number You Wish to Addon to: (Example: ../night%20fury/1/male/hatchling/page001.html)
<br>
Page Name: (Example: Walk through the door)
<br>
Page Content: (Example: You walk through the door.)
<br>
Page NSFW Content(Optional): (Example: You walk through the door and murder someone.)
<br>
Page Choices(Optional): (Example: Walk to the bed)
</div>
<div id="nsfw" class="template-nsfw">
<p>
Name(For the <a href="credits.html">credits</a> page): (Example: DragonsHeart447)
<br>
Page Number You Wish to Addon to: (Example: ../night%20fury/1/male/hatchling/page001.html)
<br>
Page Name: (Example: Walk through the door)
<br>
Page Content: (Example: You walk through the door.)
<br>
Page NSFW Content(Optional): (Example: You walk through the door and spill someones intestines.)
<br>
Page Choices(Optional): (Example: Walk to the bed)
</div>
<button onclick="topFunction()" id="topbtn" title="Go to top">Top</button>
<script>
// Get the button
let mybutton = document.getElementById("topbtn");
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
mybutton.style.display = "block";
} else {
mybutton.style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
</script>
<a href="index.html"><img src="data/img/ui/back.png" alt="Back" height="30" width="100" /></a>
<script type="text/javascript" src="https://beta.creatureverse.net/js/nsfw.js"></script>
</body>
</html>