This commit is contained in:
2025-01-04 00:34:03 +01:00
parent 41829408dc
commit 0ca14bbc19
18111 changed files with 1871397 additions and 0 deletions

View File

@@ -0,0 +1 @@
<template id="setup-authentication"></template>

View File

@@ -0,0 +1,18 @@
<article id="error" class="application framed standard-form">
<h2 class="border">{{title}}</h2>
<div class="error-details">
<p>{{{message}}}</p>
{{#if stack}}
<pre>
<code>{{stack}}</code>
</pre>
{{/if}}
</div>
<footer class="form-footer">
<a class="button" href="{{setupUrl}}" target="_self">
<i class="fas fa-backward"></i> Go Back
</a>
</footer>
</article>

View File

@@ -0,0 +1,32 @@
<template id="camera-views"></template>
<div id="interface">
<section id="ui-left">
<img id="logo" src="icons/fvtt.png" height="50px">
<template id="controls"></template>
<template id="players"></template>
</section>
<section id="ui-middle">
<header id="ui-top" class="offset">
<template id="navigation"></template>
<div id="loading">
<div id="loading-bar">
<label id="context"></label>
<label id="progress"></label>
</div>
</div>
</header>
<footer id="ui-bottom">
<div>
<template id="hotbar"></template>
<div id="fps"></div>
</div>
</footer>
</section>
<section id="ui-right">
<template id="sidebar"></template>
</section>
</div>
<template id="notifications"></template>
<template id="hud"></template>
<template id="board"></template>
<template id="pause"></template>

View File

@@ -0,0 +1 @@
<template id="join-game"></template>

View File

@@ -0,0 +1,35 @@
<!DOCTYPE html>
<html>
<head>
<!-- Page Metadata -->
<title>{{{title}}}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="robots" content="noindex, nofollow">
<link rel="icon" href="icons/vtt.png">
<!-- Included Stylesheets -->
{{#each styles}}
<link href="{{this.src}}" rel="stylesheet" type="text/css" media="all">
{{/each}}
<!-- Included Scripts -->
{{#each scripts}}
<script defer src="{{this.src}}"{{#if this.isModule}} type="{{this.type}}"{{/if}}></script>
{{/each}}
<!-- Global Variables -->
<script>
const SIGNED_EULA={{eula}};
const ROUTE_PREFIX="{{routePrefix}}";
const MESSAGES={{#if messages}}{{{messages}}}{{else}}null{{/if}};
</script>
</head>
<body class="{{ bodyClass }}" style="{{ bodyStyle }}">
{{{body}}}
{{#if watermark}}
<footer class="watermark">{{watermark}}</footer>
{{/if}}
<aside id="tooltip" role="tooltip"></aside>
</body>
</html>

View File

@@ -0,0 +1,57 @@
<!DOCTYPE html>
<html>
<head>
<!-- Page Metadata -->
<title>{{{pageTitle}}}</title>
<meta name="description" content="{{{pageDescription}}}">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="robots" content="noindex, nofollow">
<link rel="icon" href="icons/vtt.png">
<!-- Included Stylesheets -->
{{#each styles}}
<link href="{{this.src}}" rel="stylesheet" type="text/css" media="all">
{{/each}}
<!-- Included Scripts -->
{{#each scripts}}
<script defer src="{{this.src}}"{{#if this.isModule}} type="{{this.type}}"{{/if}}></script>
{{/each}}
<!-- Inline Scripts -->
<script>
const SIGNED_EULA={{eula}};
const ROUTE_PREFIX="{{routePrefix}}";
const MESSAGES={{#if messages}}{{{messages}}}{{else}}null{{/if}};
</script>
<!-- Inline Styles -->
{{#if inlineStyles}}
<style>{{{inlineStyles}}}</style>
{{/if}}
</head>
<body class="{{ bodyClass }}">
<div id="main-background"></div>
<template id="notifications"></template>
<!-- Page Header -->
<header id="main-header" class="flexcol">
<h1>{{pageTitle}}</h1>
</header>
<!-- Body Content -->
{{{body}}}
<!-- Footer Watermark -->
{{#if watermark}}
<footer id="watermark" class="flexcol">
<p id="software-version">{{watermark}}</p>
</footer>
{{/if}}
<!-- Global Tooltip Element -->
<aside id="tooltip" role="tooltip"></aside>
</body>
</html>

View File

@@ -0,0 +1,21 @@
{{#unless isEULA}}
<form id="license-key" class="application framed standard-form" method="post" autocomplete="off">
<h2 class="border">License Key Activation</h2>
<div class="form-group">
<label class="password">
<input id="key" name="licenseKey" type="text" value="{{licenseKey}}"
placeholder="XXXX-XXXX-XXXX-XXXX-XXXX-XXXX"
autocomplete="off" autofocus required>
</label>
<p class="hint">Enter a valid Foundry Virtual Tabletop software license key to unlock the software.</p>
</div>
<footer class="form-footer">
<button type="submit" class="bright" name="action" value="enterKey">
<i class="fas fa-key"></i>
<label>Submit Key</label>
</button>
</footer>
</form>
{{/unless}}

View File

@@ -0,0 +1 @@
<template id="manage-players"></template>

View File

@@ -0,0 +1,6 @@
<template id="setup-menu"></template>
<section id="setup">
<template id="setup-packages"></template>
<template id="setup-sidebar"></template>
</section>

View File

@@ -0,0 +1 @@
<template id="chat"></template>

View File

@@ -0,0 +1,2 @@
<template id="notifications"></template>
<template id="setup-update"></template>