62 lines
2.2 KiB
HTML
62 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>seasoned | verify</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
|
|
|
<!-- Compiled and minified CSS -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.1/css/materialize.min.css">
|
|
|
|
<!-- Compiled and minified JavaScript -->
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.1/js/materialize.min.js"></script>
|
|
|
|
<link rel="stylesheet" type="text/css" href="style.css">
|
|
</head>
|
|
<body>
|
|
<h3 id='title'></h3>
|
|
|
|
<div class="row formContainer">
|
|
<form action="/" id="searchForm" class="col s12">
|
|
<div class="row">
|
|
<div class="input-field col s12">
|
|
<input placeholder="Parent" id="parent" type="text">
|
|
<label for="parent">Parent</label>
|
|
</div>
|
|
<div class="col s12"></div>
|
|
<div class="input-field col s4">
|
|
<input placeholder="" id="name" type="text">
|
|
<label for="name">Name</label>
|
|
</div>
|
|
<div class="input-field col s4">
|
|
<input placeholder="" id="season" type="text" class="validate">
|
|
<label for="season">Season</label>
|
|
</div>
|
|
<div class="input-field col s4">
|
|
<input placeholder="" id="episode" type="text" class="validate">
|
|
<label for="episode">Episode</label>
|
|
</div>
|
|
<div class="col s12"></div>
|
|
<div class="input-field col s12">
|
|
<input placeholder="" id="video_files" type="text" class="validate">
|
|
<label for="video_files">Video files</label>
|
|
</div>
|
|
<div class="input-field col s12">
|
|
<input placeholder="" id="subtitles" type="text" class="validate">
|
|
<label for="subtitles">Subtitles</label>
|
|
</div>
|
|
<div class="input-field col s12">
|
|
<input placeholder="" id="trash" type="text" class="validate">
|
|
<label for="trash">Trash</label>
|
|
</div>
|
|
</div>
|
|
|
|
<button type="submit" class="btn waves-effect waves-light" type="submit" name="action">Submit
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
|
|
<script type="text/javascript" src="js/env_variables.js"></script>
|
|
<script type="text/javascript" src="js/main.js"></script>
|
|
</html> |