-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (32 loc) · 1.38 KB
/
index.html
File metadata and controls
44 lines (32 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Flat HTML5/CSS3 Login Form</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1>Cimaclub</h1>
<div class="login-page">
<div class="form">
<form class="login-form" action="query.php" method="post">
<input type="text" placeholder="title" name="title"/>
<input type="text" placeholder="overview" name="overview"/>
<input type="text" placeholder="release_date" name="release_date"/>
<input type="text" placeholder="genres" name="genres"/>
<input type="text" placeholder="poster_path" name="poster_path"/>
<input type="text" placeholder="cover_path" name="cover_path"/>
<input type="text" placeholder="trailer_path" name="trailer_path"/>
<input type="text" placeholder="production_companies" name="production_companies"/>
<input type="text" placeholder="production_countries" name="production_countries"/>
<input type="text" placeholder="adult" name="adult"/>
<input type="text" placeholder="revenue" name="revenue"/>
<input type="text" placeholder="vote_average" name="vote_average"/>
<input type="text" placeholder="servers" name="servers"/>
<button type="submit" value="submit" name="post">Post</button>
<button type="reset" value="Reset">Reset</button>
</form>
</div>
</div>
</body>
</html>