43 lines
2.3 KiB
HTML
43 lines
2.3 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>LispPlayground</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="LispPlaygroundConfigPage" data-role="page" class="page type-interior pluginConfigurationPage" data-require="emby-input,emby-button,emby-select,emby-checkbox" data-controller="__plugin/lispPlayground.js">
|
||
|
<div data-role="content">
|
||
|
<div class="content-primary">
|
||
|
<form id="LispPlaygroundConfigForm">
|
||
|
<div class="inputContainer">
|
||
|
<label class="inputLabel inputLabelUnfocused" for="LispPlaygroundEditProgram">Program</label>
|
||
|
<div class="fieldDescription">A program which should return <code>t</code> or <code>nil</code> to include or exclude the provided <code>item</code>.</div>
|
||
|
<textarea id="LispPlaygroundEditProgram" class="emby-input smartcollection-monospace" name="Program" rows="16" cols="120"></textarea>
|
||
|
</div>
|
||
|
<div class="inputContainer">
|
||
|
<label class="inputLabel inputLabelUnfocused" for="LispPlaygroundOutput">Output</label>
|
||
|
<div class="fieldDescription">The output of the program.</div>
|
||
|
<textarea id="LispPlaygroundOutput" class="emby-input smartcollection-monospace" name="Output" rows="16" cols="120"></textarea>
|
||
|
</div>
|
||
|
<div class="inputContainer">
|
||
|
<label class="inputLabel inputLabelUnfocused" for="LispPlaygroundReturn">Final expression</label>
|
||
|
<div class="fieldDescription">The final expression the program has been reduced to.</div>
|
||
|
<textarea id="LispPlaygroundReturn" class="emby-input smartcollection-monospace" name="Output" rows="1" cols="120"></textarea>
|
||
|
</div>
|
||
|
<div>
|
||
|
<button is="emby-button" type="submit" class="raised button-submit block emby-button">
|
||
|
<span>Run</span>
|
||
|
</button>
|
||
|
</div>
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
<style>
|
||
|
.smartcollection-monospace {
|
||
|
font-family: monospace;
|
||
|
}
|
||
|
</style>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|