Add licensing info to Time Machine submission form

This commit is contained in:
Ben Visness 2023-06-16 14:29:16 -05:00
parent 633f8f1007
commit 5bc118d9e0
2 changed files with 19 additions and 3 deletions

View File

@ -128,6 +128,10 @@
font-family: "MS Sans Serif", "Microsoft Sans Serif", sans-serif; font-family: "MS Sans Serif", "Microsoft Sans Serif", sans-serif;
} }
.frame a {
color: #000082;
}
.inset { .inset {
border-width: 1px; border-width: 1px;
border-color: #828282 #ffffff #ffffff #828282; border-color: #828282 #ffffff #ffffff #828282;

View File

@ -32,13 +32,21 @@
Take video of yourself using an old device. The video should: Take video of yourself using an old device. The video should:
</p> </p>
<ul> <ul>
<li>Show the entire device so viewers have necessary context</li> <li>Show the entire device</li>
<li>Clearly show the contents of the device's screen</li> <li>Clearly show the contents of the device's screen</li>
<li>Have minimal editing, no commentary, and clear sound</li> <li>Have minimal editing and clear sound</li>
</ul> </ul>
<p> <p>
Upload the video somewhere publicly accessible, then share the link here. We can download videos from file-sharing services or any video service supported by youtube-dl. Upload the video somewhere publicly accessible, then share the link here. We can download videos from file-sharing services or any video service supported by youtube-dl. <a href="javascript:terms()">See licensing terms.</a>
</p> </p>
<div id="terms" class="dn">
<p>By submitting this form, you are granting us permission to:</p>
<ul>
<li>Download copies of any submitted videos</li>
<li>Edit any submitted videos and publish them with attribution on our website and other promotional channels</li>
</ul>
<p>Submitted videos will not be used for any commercial purpose.</p>
</div>
</div> </div>
</div> </div>
</div> </div>
@ -102,5 +110,9 @@
mediaUrl.value = localStorage.getItem("tm_media_url") ?? ""; mediaUrl.value = localStorage.getItem("tm_media_url") ?? "";
deviceInfo.value = localStorage.getItem("tm_device_info") ?? ""; deviceInfo.value = localStorage.getItem("tm_device_info") ?? "";
description.value = localStorage.getItem("tm_description") ?? ""; description.value = localStorage.getItem("tm_description") ?? "";
function terms() {
document.querySelector("#terms").classList.toggle("dn");
}
</script> </script>
{{ end }} {{ end }}