| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>Create Course</title>
- <link rel="icon" type="img/ico" href="/images/favicon">
- <style>
- form{
- display: flex;
- flex-direction: column;
- }
- form > *{
- margin: 10px 0;
- }
- input[type=submit]{
- max-width: 250px;
- }
- </style>
- </head>
- <body>
- <h1>Enter course details</h1>
- <form action="/learn/courses/new" method="post" encType="multipart/form-data">
- <label>Uploader ID
- <input name="uploaderId" type="text" required>
- </label>
- <label>Password
- <input name="password" type="password" required>
- </label>
- <label>Course Title
- <input name="title" type="text" required>
- </label>
- <label>ThumbNail (max 1mb)
- <input name="thumbNail" type="file" required>
- </label>
-
- <label>Description
- <textarea name="description" minlength="25" required></textarea>
- </label>
- <input type="submit" value="Submit">
- </form>
- </body>
- </html>
|