Initial
This commit is contained in:
1
resources/app/templates/views/auth.hbs
Normal file
1
resources/app/templates/views/auth.hbs
Normal file
@@ -0,0 +1 @@
|
||||
<template id="setup-authentication"></template>
|
||||
18
resources/app/templates/views/error.hbs
Normal file
18
resources/app/templates/views/error.hbs
Normal 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>
|
||||
32
resources/app/templates/views/game.hbs
Normal file
32
resources/app/templates/views/game.hbs
Normal 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>
|
||||
1
resources/app/templates/views/join.hbs
Normal file
1
resources/app/templates/views/join.hbs
Normal file
@@ -0,0 +1 @@
|
||||
<template id="join-game"></template>
|
||||
35
resources/app/templates/views/layouts/main.hbs
Normal file
35
resources/app/templates/views/layouts/main.hbs
Normal 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>
|
||||
57
resources/app/templates/views/layouts/setup.hbs
Normal file
57
resources/app/templates/views/layouts/setup.hbs
Normal 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>
|
||||
21
resources/app/templates/views/license.hbs
Normal file
21
resources/app/templates/views/license.hbs
Normal 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}}
|
||||
1
resources/app/templates/views/players.hbs
Normal file
1
resources/app/templates/views/players.hbs
Normal file
@@ -0,0 +1 @@
|
||||
<template id="manage-players"></template>
|
||||
6
resources/app/templates/views/setup.hbs
Normal file
6
resources/app/templates/views/setup.hbs
Normal file
@@ -0,0 +1,6 @@
|
||||
<template id="setup-menu"></template>
|
||||
|
||||
<section id="setup">
|
||||
<template id="setup-packages"></template>
|
||||
<template id="setup-sidebar"></template>
|
||||
</section>
|
||||
1
resources/app/templates/views/stream.hbs
Normal file
1
resources/app/templates/views/stream.hbs
Normal file
@@ -0,0 +1 @@
|
||||
<template id="chat"></template>
|
||||
2
resources/app/templates/views/update.hbs
Normal file
2
resources/app/templates/views/update.hbs
Normal file
@@ -0,0 +1,2 @@
|
||||
<template id="notifications"></template>
|
||||
<template id="setup-update"></template>
|
||||
Reference in New Issue
Block a user