2022-07-01 05:55:53 +00:00
{%- from 'util/assetcache.html' import asset, asset_siteimg with context -%}
2022-06-07 09:26:22 +00:00
{%- import 'util/helpers.html' as help -%}
2022-05-04 23:09:46 +00:00
<!DOCTYPE html>
< html lang = "en" >
< head >
2022-08-06 01:20:25 +00:00
< script src = "{{asset('js/bootstrap.js')}}" > < / script >
2022-06-24 15:08:57 +00:00
< meta name = "description" content = "{{DESCRIPTION}}" >
2022-08-06 01:20:25 +00:00
< meta http-equiv = "Content-Security-Policy" content = "script-src 'self' 'unsafe-inline'; connect-src 'self'; object-src 'none';" >
2022-05-04 23:09:46 +00:00
2022-08-06 01:20:25 +00:00
< meta charset = "utf-8" >
< meta name = "viewport" content = "width=device-width, initial-scale=1, shrink-to-fit=no" >
2022-05-04 23:09:46 +00:00
2022-08-06 01:20:25 +00:00
< meta name = "author" content = "" >
< link rel = "icon" type = "image/webp" href = "{{asset_siteimg('icon.webp')}}" >
2022-05-04 23:09:46 +00:00
2022-08-06 01:20:25 +00:00
{% if SITE == 'pcmemes.net' %}
{% set cc='Splash Mountain' %}
{% else %}
{% set cc='Country Club' %}
{% endif %}
2022-05-04 23:09:46 +00:00
2022-08-06 01:20:25 +00:00
{% block title %}
2022-05-04 23:09:46 +00:00
< title > Create a post - {{SITE_NAME}}< / title >
2022-08-06 01:20:25 +00:00
{% endblock %}
2022-05-04 23:09:46 +00:00
2022-08-06 01:20:25 +00:00
{% block stylesheets %}
2022-05-04 23:09:46 +00:00
{% if v %}
< style > : root { --primary : # { { v . themecolor } } } < / style >
2022-05-27 02:47:32 +00:00
< link rel = "stylesheet" href = "{{asset('css/main.css')}}" >
2022-05-30 05:50:52 +00:00
< link rel = "stylesheet" href = "{{asset('css/' + v.theme + '.css')}}" >
2022-05-04 23:09:46 +00:00
{% if v.agendaposter %}
< style >
html {
2022-06-22 15:59:47 +00:00
cursor:url('/i/dildo.webp?v=2000'), auto;
2022-05-04 23:09:46 +00:00
}
.nav-item .text-small.font-weight-bold::before {
content: "((("
}
.nav-item .text-small.font-weight-bold::after {
content: ")))"
}
2022-06-27 02:33:38 +00:00
.nav-item .text-small-extra.text-primary {
2022-05-04 23:09:46 +00:00
font-size: 0 !important
}
2022-06-27 02:33:38 +00:00
.nav-item .text-small-extra.text-primary i {
2022-05-04 23:09:46 +00:00
font-size: 11px !important
}
< / style >
{% elif v.css %}
2022-07-01 21:10:48 +00:00
< style >
{{v.css | safe}}
< / style >
2022-05-04 23:09:46 +00:00
{% endif %}
{% else %}
2022-06-24 01:28:34 +00:00
< style > : root { --primary : # { { DEFAULT_COLOR } } < / style >
2022-05-27 02:47:32 +00:00
< link rel = "stylesheet" href = "{{asset('css/main.css')}}" >
2022-06-24 15:08:57 +00:00
< link rel = "stylesheet" href = "/assets/css/{{DEFAULT_THEME}}.css?v=49" >
2022-05-04 23:09:46 +00:00
{% endif %}
2022-08-06 01:20:25 +00:00
{% endblock %}
< / head >
2022-05-04 23:09:46 +00:00
< body id = "submit" { % if SITE_NAME = = ' rDrama ' and v and ( v . is_banned or v . agendaposter ) % } style = "overflow-x: hidden;background:url(/assets/images/backgrounds/anime/1.webp?v=3) center center fixed; background-color: var(--background)" { % elif v and v . background % } style = "overflow-x: hidden; background:url(/assets/images/backgrounds/{{v.background}}?v=3) center center fixed; background-color: var(--background)display: block{% if 'anime' not in v.background %};background-size: cover{% endif %}" { % endif % } >
{% include "header.html" %}
{% block form %}
< div class = "submit-grid-view" >
< form id = "submitform" action = "{% if sub %}/h/{{sub.name}}{% endif %}/submit" method = "post" enctype = "multipart/form-data" style = "grid-column: 2" >
< div class = "container" >
< div class = "row justify-content-center mb-5" >
< div class = "col p-3 py-md-0" >
< h2 class = "mt-3" > Create a post< / h2 >
< div class = "body" >
< input type = "hidden" name = "formkey" value = "{{v.formkey}}" >
2022-06-23 09:02:49 +00:00
< label class = 'mt-4' for = "title" > {{HOLE_NAME|capitalize}}< / label >
2022-05-04 23:09:46 +00:00
< div class = "input-group mb2" >
2022-06-26 01:01:21 +00:00
{%- set hole_placeholder = 'Required' if HOLE_REQUIRED else 'Optional' -%}
2022-08-07 06:56:13 +00:00
< input list = "subs" autocomplete = "off" id = 'sub' class = "form-control" form = "submitform" name = "sub" oninput = "savetext()" onchange = "updateCategories()" { % if sub % } value = "{{sub.name}}" { % endif % } placeholder = "{{hole_placeholder}}" >
2022-05-04 23:09:46 +00:00
< datalist id = "subs" >
{% for s in SUBS %}
< option value = "{{s}}" > < / option >
{% endfor %}
< / datalist >
< / div >
2022-06-23 09:02:49 +00:00
2022-06-26 01:01:21 +00:00
{% if not HOLE_REQUIRED -%}
2022-06-23 09:02:49 +00:00
< div class = "mt-1" style = "font-size: min(3.5vw,14px)" > < span style = "color:#ffcccb " > WARNING< / span > : Selecting a {{HOLE_NAME}} considerably reduces the number of people who will see your post. Don't select a {{HOLE_NAME}} unless that's what you want.< / div >
{%- endif %}
2022-05-04 23:09:46 +00:00
2022-08-07 06:56:13 +00:00
{% if FEATURES['CATEGORIES'] -%}
< label class = "mt-4" for = "submit-categories" > Category< / label >
< div id = "submit-categories" > < / div >
{%- endif %}
2022-05-04 23:09:46 +00:00
< label class = 'mt-4' for = "title" > Post Title< / label >
2022-07-17 05:42:03 +00:00
< input autocomplete = "off" class = "form-control allow-emojis" id = "post-title" aria-describedby = "titleHelpRegister" type = "text" name = "title" placeholder = "Required" value = "{{title}}" minlength = "1" maxlength = "500" required oninput = "checkForRequired();savetext()" >
2022-05-04 23:09:46 +00:00
2022-05-05 02:15:23 +00:00
< div onclick = "loadEmojis('post-title')" class = "btn btn-secondary format d-inline-block m-0" id = "emoji-reply-btn-2" aria-hidden = "true" data-bs-toggle = "modal" data-bs-target = "#emojiModal" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "Add Emoji" > < i class = "fas fa-smile-beam" > < / i > < / div >
2022-05-04 23:09:46 +00:00
< div id = "urlblock" >
< label for = "URL" class = "mt-3" > URL< / label >
2022-06-29 01:31:59 +00:00
< input autocomplete = "off" class = "form-control" id = "post-url" aria-describedby = "URLHelp" name = "url" type = "url" placeholder = "Optional if you have text." value = "{{request.values.get('url','')}}" required oninput = "checkForRequired();hide_image();savetext();checkRepost(){% if SITE_NAME != 'PCM' %};autoSuggestTitle(){% endif %}" >
2022-07-01 18:29:12 +00:00
< small id = "system" class = "form-text text-muted" > To post an image, use a direct image link such as i.imgur.com< / small >
2022-05-04 23:09:46 +00:00
< / div >
< div id = "image-upload-block" >
< div > < label class = "mt-3" > Attachment Upload< / label > < / div >
< img loading = "lazy" id = "image-preview" style = "max-width:50%" >
< label class = "btn btn-secondary m-0" for = "file-upload" >
< div id = "filename-show" > Select File< / div >
2022-06-19 16:56:45 +00:00
< input autocomplete = "off" id = "file-upload" accept = "image/*, video/*, audio/*" type = "file" name = "file-url" { % if request . headers . get ( ' cf-ipcountry ' ) = = " T1 " % } disabled { % endif % } hidden >
2022-05-04 23:09:46 +00:00
< / label >
< small class = "form-text text-muted" > Optional if you have text.< / small >
2022-08-13 08:44:13 +00:00
< small class = "form-text text-muted" > You can upload images or videos.< / small >
2022-05-04 23:09:46 +00:00
< / div >
< / div >
< label for = "body" class = "mt-3" > Text< i class = "fas fa-info-circle text-gray-400 ml-1" data-bs-toggle = "tooltip" data-bs-placement = "top" title = "Uses markdown. Limited to 20000 characters." > < / i > < / label >
2022-08-11 17:18:53 +00:00
< textarea form = "submitform" id = "post-text" class = "form-control rounded" aria-label = "With textarea" placeholder = "Optional if you have a link or an image." rows = "7" name = "body" data-preview = "preview" oninput = "markdown(this);charLimit('post-text','character-count-submit-text-form');checkForRequired();savetext()" { % if v . longpost % } minlength = "280" { % endif % } maxlength = "{% if v.bird %}140{% else %}20000{% endif %}" required > < / textarea >
2022-07-17 05:02:22 +00:00
< div class = "ghostdiv" style = "display:none;" > < / div >
2022-05-04 23:09:46 +00:00
2022-05-25 19:45:03 +00:00
< div class = "text-small font-weight-bold mt-1" id = "character-count-submit-text-form" style = "right: 1rem; bottom: 0.5rem; z-index: 3;" > < / div >
2022-05-04 23:09:46 +00:00
< p > < / p >
2022-06-28 02:09:23 +00:00
< div class = "btn btn-secondary fl-r" onclick = "document.getElementById('preview').classList.toggle('d-none');" >
Toggle preview
< / div >
2022-05-04 23:09:46 +00:00
< small onclick = "makeBold('post-text')" class = "btn btn-secondary format d-inline-block m-0" >
< i class = "fas fa-bold" aria-hidden = "true" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "Bold" > < / i >
< / small >
< small onclick = "makeItalics('post-text')" class = "btn btn-secondary format d-inline-block m-0" >
< i class = "fas fa-italic" aria-hidden = "true" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "Italicize" > < / i >
< / small >
< small onclick = "makeQuote('post-text')" class = "btn btn-secondary format d-inline-block m-0" >
< i class = "fas fa-quote-right" aria-hidden = "true" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "Quote" > < / i >
< / small >
< small class = "btn btn-secondary format d-inline-block m-0" > < span class = "font-weight-bolder text-uppercase" aria-hidden = "true" onclick = "getGif();commentForm('post-text')" data-bs-toggle = "modal" data-bs-target = "#gifModal" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "Add GIF" > GIF< / span > < / small >
2022-05-06 03:38:20 +00:00
< div onclick = "loadEmojis('post-text')" class = "btn btn-secondary format d-inline-block m-0" id = "emoji-reply-btn" aria-hidden = "true" data-bs-toggle = "modal" data-bs-target = "#emojiModal" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "Add Emoji" > < i class = "fas fa-smile-beam" > < / i > < / div >
2022-05-04 23:09:46 +00:00
< label class = "format btn btn-secondary m-0 ml-1 {% if v %}d-inline-block{% else %}d-none{% endif %}" for = "file-upload-submit" >
2022-05-22 22:15:29 +00:00
< div id = "filename-show-submit" > < i class = "fas fa-file" > < / i > < / div >
2022-06-19 16:56:45 +00:00
< input autocomplete = "off" id = "file-upload-submit" multiple = "multiple" accept = "image/*, video/*, audio/*" type = "file" name = "file" { % if request . headers . get ( ' cf-ipcountry ' ) = = " T1 " % } disabled { % endif % } onchange = "changename('filename-show-submit','file-upload-submit');checkForRequired()" hidden >
2022-05-04 23:09:46 +00:00
< / label >
< div id = "preview" class = "preview my-3" > < / div >
< pre > < / pre >
< div class = "form-text text-small" > < a href = "/formatting" { % if v and v . newtab and not g . webview % } target = "_blank" { % endif % } > Formatting help< / a > < / div >
< pre > < / pre >
< div class = "custom-control custom-checkbox" >
< input autocomplete = "off" type = "checkbox" class = "custom-control-input" id = "new" name = "new" >
< label class = "custom-control-label" for = "new" > Make the default comment sorting "new"< / label >
< / div >
< div class = "custom-control custom-checkbox" >
< input autocomplete = "off" type = "checkbox" class = "custom-control-input" id = "nsfw" name = "over_18" >
< label class = "custom-control-label" for = "nsfw" > +18< / label >
< / div >
< div class = "custom-control custom-checkbox" >
< input onchange = 'draft(this);' autocomplete = "off" type = "checkbox" class = "custom-control-input" id = "private" name = "private" >
< label class = "custom-control-label" for = "private" > Draft< / label >
< / div >
2022-07-20 01:50:08 +00:00
{% if FEATURES['COUNTRY_CLUB'] -%}
2022-05-04 23:09:46 +00:00
< div class = "custom-control custom-checkbox" >
< input autocomplete = "off" type = "checkbox" class = "custom-control-input" id = "club" name = "club" >
< label class = "custom-control-label" for = "club" > {{CC_TITLE}} thread< / label >
< / div >
2022-07-20 01:50:08 +00:00
{%- endif %}
2022-05-04 23:09:46 +00:00
< div class = "custom-control custom-checkbox" >
< input onchange = 'draft(this);' autocomplete = "off" type = "checkbox" class = "custom-control-input" id = "ghost" name = "ghost" { % if v . coins < 100 % } disabled { % endif % } >
< label class = "custom-control-label" for = "ghost" > Ghost Thread (cost: 100 coins)< / label >
< / div >
< pre >
< / pre >
< / div >
< / div >
< / div >
< div class = "container" >
< div class = "row fixed-bottom bg-white border-top p-3" id = "" style = "z-index: 100; bottom: 0px; transition: bottom 220ms cubic-bezier(0, 0, 0.2, 1) 0s;" >
< div class = "col" >
< a href = "/" class = "btn btn-secondary" > Cancel< / a >
< / div >
< div class = "col text-right" >
{% if error %}< span class = "text-danger text-large mr-2" > {{error}}< / span > {% endif %}
2022-06-24 02:53:31 +00:00
< button class = "btn btn-primary" id = "create_button" type = "submit" onclick = "disable(this)" disabled > Post< / button >
2022-05-04 23:09:46 +00:00
< / div >
< / div >
< / div >
< / form >
< / div >
{% endblock %}
{% if request.path == '/submit' %}
< script >
let sub = document.getElementById('sub')
if (sub) sub.value = localStorage.getItem("sub")
< / script >
{% endif %}
2022-07-03 10:10:04 +00:00
< script src = "{{asset('js/marked.js')}}" > < / script >
< script src = "{{asset('js/formatting.js')}}" > < / script >
< script src = "{{asset('js/submit.js')}}" > < / script >
2022-05-04 23:09:46 +00:00
{% include "emoji_modal.html" %}
{% include "gif_modal.html" %}
< / body >
< / html >