Advertisement
ErolKZ

Untitled

Mar 13th, 2022
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.84 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <title>Application 2020</title>
  6. <link rel="icon" type="image/png" href="/static/favicon.ico" />
  7. <link href="/static/css/site.css" type="text/css" rel="stylesheet" />
  8. <link
  9. rel="stylesheet"
  10. href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
  11. integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
  12. crossorigin="anonymous"
  13. />
  14. </head>
  15.  
  16. <body>
  17. <div class="container" id="container">
  18. <nav class="navbar navbar-expand-lg navbar-dark bg-dark">
  19. <a class="navbar-brand text-light" href="#">Movies</a>
  20. <ul class="navbar-nav ml-auto">
  21. <li class="nav-item">
  22. <a class="nav-link">Welcome, email</a>
  23. </li>
  24. <li class="nav-item">
  25. <a class="nav-link" href="#">Logout</a>
  26. </li>
  27. <li class="nav-item">
  28. <a class="nav-link" href="#">Login</a>
  29. </li>
  30. <li class="nav-item">
  31. <a class="nav-link" href="#">Register</a>
  32. </li>
  33. </ul>
  34. </nav>
  35.  
  36. <section id="home-page">
  37. <div
  38. class="jumbotron jumbotron-fluid text-light"
  39. style="background-color: #343a40"
  40. >
  41. <img
  42. src="https://slicksmovieblog.files.wordpress.com/2014/08/cropped-movie-banner-e1408372575210.jpg"
  43. class="img-fluid"
  44. alt="Responsive image"
  45. style="width: 150%; height: 200px"
  46. />
  47. <h1 class="display-4">Movies</h1>
  48. <p class="lead">
  49. Unlimited movies, TV shows, and more. Watch anywhere. Cancel
  50. anytime.
  51. </p>
  52. </div>
  53. </section>
  54.  
  55. <h1 class="text-center">Movies</h1>
  56.  
  57. <section id="add-movie-button">
  58. <a href="#" class="btn btn-warning">Add Movie</a>
  59. </section>
  60.  
  61. <section id="movie">
  62. <div class="mt-3">
  63. <div class="row d-flex d-wrap">
  64. <div class="card-deck d-flex justify-content-center">
  65. <div class="card mb-4">
  66. <img
  67. class="card-img-top"
  68. src="https://pbs.twimg.com/media/ETINgKwWAAAyA4r.jpg"
  69. alt="Card image cap"
  70. width="400"
  71. />
  72. <div class="card-body">
  73. <h4 class="card-title">Wonder Woman 1984</h4>
  74. </div>
  75. <div class="card-footer">
  76. <a href="#/details/6lOxMFSMkML09wux6sAF">
  77. <button type="button" class="btn btn-info">Details</button>
  78. </a>
  79. </div>
  80. </div>
  81.  
  82. <div class="card mb-4">
  83. <img
  84. class="card-img-top"
  85. src="https://i.pinimg.com/originals/f2/a4/58/f2a458048757bc6914d559c9e4dc962a.jpg"
  86. alt="Card image cap"
  87. width="400"
  88. />
  89. <div class="card-body">
  90. <h4 class="card-title">Top Gun 2</h4>
  91. </div>
  92. <div class="card-footer">
  93. <a href="#/details/CUtL9j4qI0XVhn9kTUsx">
  94. <button type="button" class="btn btn-info">Details</button>
  95. </a>
  96. </div>
  97. </div>
  98.  
  99. <div class="card mb-4">
  100. <img
  101. class="card-img-top"
  102. src="https://miro.medium.com/max/735/1*akkAa2CcbKqHsvqVusF3-w.jpeg"
  103. alt="Card image cap"
  104. width="400"
  105. />
  106. <div class="card-body">
  107. <h4 class="card-title">Black Widow</h4>
  108. </div>
  109. <div class="card-footer">
  110. <a href="#/details/krPgQD6SWf39bM4x00co">
  111. <button type="button" class="btn btn-info">Details</button>
  112. </a>
  113. </div>
  114. </div>
  115. </div>
  116. </div>
  117. </div>
  118. </section>
  119.  
  120. <section id="add-movie">
  121. <form class="text-center border border-light p-5" action="#" method="">
  122. <h1>Add Movie</h1>
  123. <div class="form-group">
  124. <label for="title">Movie Title</label>
  125. <input
  126. id="titleAddM"
  127. type="text"
  128. class="form-control"
  129. placeholder="Title"
  130. name="title"
  131. value=""
  132. />
  133. </div>
  134. <div class="form-group">
  135. <label for="description">Movie Description</label>
  136. <textarea
  137. class="form-control"
  138. placeholder="Description"
  139. name="description"
  140. ></textarea>
  141. </div>
  142. <div class="form-group">
  143. <label for="imageUrl">Image url</label>
  144. <input
  145. id="imageUrl1"
  146. type="text"
  147. class="form-control"
  148. placeholder="Image Url"
  149. name="imageUrl"
  150. value=""
  151. />
  152. </div>
  153. <button type="submit" class="btn btn-primary">Submit</button>
  154. </form>
  155. </section>
  156.  
  157. <section id="movie-example">
  158. <div class="container">
  159. <div class="row bg-light text-dark">
  160. <h1>Movie title: Black Widow</h1>
  161.  
  162. <div class="col-md-8">
  163. <img
  164. class="img-thumbnail"
  165. src="https://miro.medium.com/max/735/1*akkAa2CcbKqHsvqVusF3-w.jpeg"
  166. alt="Movie"
  167. />
  168. </div>
  169. <div class="col-md-4 text-center">
  170. <h3 class="my-3">Movie Description</h3>
  171. <p>
  172. Natasha Romanoff aka Black Widow confronts the darker parts of
  173. her ledger when a dangerous conspiracy with ties to her past
  174. arises. Comes on the screens 2020.
  175. </p>
  176. <a class="btn btn-danger" href="#">Delete</a>
  177. <a class="btn btn-warning" href="#">Edit</a>
  178. <a class="btn btn-primary" href="#">Like</a>
  179. <span class="enrolled-span">Liked 1</span>
  180. </div>
  181. </div>
  182. </div>
  183. </section>
  184.  
  185. <section id="edit-movie">
  186. <form class="text-center border border-light p-5" action="#" method="">
  187. <h1>Edit Movie</h1>
  188. <div class="form-group">
  189. <label for="title">Movie Title</label>
  190. <input
  191. id="titleEdM"
  192. type="text"
  193. class="form-control"
  194. placeholder="Movie Title"
  195. value=""
  196. name="title"
  197. />
  198. </div>
  199. <div class="form-group">
  200. <label for="description">Movie Description</label>
  201. <textarea
  202. class="form-control"
  203. placeholder="Movie Description..."
  204. name="description"
  205. ></textarea>
  206. </div>
  207. <div class="form-group">
  208. <label for="imageUrl">Image url</label>
  209. <input
  210. id="imageUrl2"
  211. type="text"
  212. class="form-control"
  213. placeholder="Image Url"
  214. value=""
  215. name="imageUrl"
  216. />
  217. </div>
  218. <button type="submit" class="btn btn-primary">Submit</button>
  219. </form>
  220. </section>
  221.  
  222. <section id="form-login">
  223. <form class="text-center border border-light p-5" action="" method="">
  224. <div class="form-group">
  225. <label for="email">Email</label>
  226. <input
  227. id="email1"
  228. type="email"
  229. class="form-control"
  230. placeholder="Email"
  231. name="email"
  232. value=""
  233. />
  234. </div>
  235. <div class="form-group">
  236. <label for="password">Password</label>
  237. <input
  238. id="password1"
  239. type="password"
  240. class="form-control"
  241. placeholder="Password"
  242. name="password"
  243. value=""
  244. />
  245. </div>
  246.  
  247. <button type="submit" class="btn btn-primary">Login</button>
  248. </form>
  249. </section>
  250.  
  251. <section id="form-sign-up">
  252. <form
  253. class="text-center border border-light p-5"
  254. action="#"
  255. method="post"
  256. >
  257. <div class="form-group">
  258. <label for="email">Email</label>
  259. <input
  260. id="email2"
  261. type="email"
  262. class="form-control"
  263. placeholder="Email"
  264. name="email"
  265. value=""
  266. />
  267. </div>
  268. <div class="form-group">
  269. <label for="password">Password</label>
  270. <input
  271. id="password2"
  272. type="password"
  273. class="form-control"
  274. placeholder="Password"
  275. name="password"
  276. value=""
  277. />
  278. </div>
  279.  
  280. <div class="form-group">
  281. <label for="repeatPassword">Repeat Password</label>
  282. <input
  283. id="repeatPassword"
  284. type="password"
  285. class="form-control"
  286. placeholder="Repeat-Password"
  287. name="repeatPassword"
  288. value=""
  289. />
  290. </div>
  291.  
  292. <button type="submit" class="btn btn-primary">Register</button>
  293. </form>
  294. </section>
  295.  
  296. <footer class="page-footer font-small">
  297. <div class="footer-copyright text-center py-3">
  298. © 2020
  299. <a href="#" class="text-dark">JS Applications</a>
  300. </div>
  301. </footer>
  302. </div>
  303. </body>
  304. </html>
  305.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement