JDRssDownloader/views/addshow.pug

18 lines
535 B
Plaintext
Raw Normal View History

2022-10-25 15:52:08 +01:00
extends layout
block layout-content
div.View
h1.Banner Add Show
div.Message
form(action="/addNewShow" method="POST")
p Show Name:
input(type="text" name="showName" placeholder="Enter the show to track ")
p Quality:
select(name="quality")
option(value='720') #{'720p'}
option(value='1080') #{'1080p'}
2022-10-26 10:19:43 +01:00
option(value='2160') #{'2160p'}
2022-10-25 15:52:08 +01:00
input(type="submit", value="Add Show")
div.NavButtons
a(href="/")
div.NavButton Home