mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
56 lines
2.4 KiB
HTML
56 lines
2.4 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Media Browser</title>
|
|
</head>
|
|
<body>
|
|
<div id="liveTvTimerPage" data-role="page" class="page libraryPage" data-theme="a" data-view="livetv">
|
|
<div class="libraryViewNav">
|
|
<a href="livetvguide.html">Guide</a>
|
|
<a href="livetvchannels.html">Channels</a>
|
|
<a href="livetvrecordings.html">Recordings</a>
|
|
<a href="livetvtimers.html" class="ui-btn-active">Timers</a>
|
|
</div>
|
|
<div data-role="content">
|
|
<form style="margin: 0 auto;">
|
|
<h1>Timer Info</h1>
|
|
|
|
<p class="program"></p>
|
|
<p class="channel"></p>
|
|
<p class="overview"></p>
|
|
|
|
<br />
|
|
<br />
|
|
|
|
<ul data-role="listview" class="ulForm">
|
|
<li>
|
|
<label for="txtRequestedPrePaddingSeconds">Requested pre-padding seconds: </label>
|
|
<input type="number" id="txtRequestedPrePaddingSeconds" pattern="[0-9]*" required="required" min="0" />
|
|
</li>
|
|
<li>
|
|
<label for="txtRequestedPostPaddingSeconds">Requested post-padding seconds: </label>
|
|
<input type="number" id="txtRequestedPostPaddingSeconds" pattern="[0-9]*" required="required" min="0" />
|
|
</li>
|
|
<li>
|
|
<label for="txtRequiredPrePaddingSeconds">Required pre-padding seconds: </label>
|
|
<input type="number" id="txtRequiredPrePaddingSeconds" pattern="[0-9]*" required="required" min="0" />
|
|
</li>
|
|
<li>
|
|
<label for="txtRequiredPostPaddingSeconds">Required post-padding seconds: </label>
|
|
<input type="number" id="txtRequiredPostPaddingSeconds" pattern="[0-9]*" required="required" min="0" />
|
|
</li>
|
|
<li>
|
|
<button type="submit" data-theme="b" data-icon="ok" data-mini="true">
|
|
Save
|
|
</button>
|
|
<button type="button" onclick="Dashboard.navigate('livetvtimers.html');" data-icon="delete" data-mini="true">
|
|
Cancel
|
|
</button>
|
|
</li>
|
|
</ul>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|