-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupload.html
61 lines (57 loc) · 2.32 KB
/
upload.html
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="CSS\util.css">
<link rel="stylesheet" href="CSS\style_register.css">
<link rel="stylesheet" href="CSS\mobile.css">
<title>Upload - ClickNotes</title>
</head>
<body>
<nav class="navigation max-width-1 m-auto">
<div class="nav-left">
<span> ClickNotes</span>
<ul>
<li><a href="Notes.html">Home</a></li>
<li><a href="upload.html">Upload</a></li>
<li><a href="download.html">Download</a></li>
<li><a href="about.html">About Founder</a></li>
</ul>
</div>
<div class="nav-right">
<form action="search.html" method="get">
<input class="form-input" type="text" name="search" id="search" placeholder=" Notes Search">
<button class="btn">Search</button>
</form>
</div>
</nav>
<div class="sub max-width-2 m-auto">
<h2>To Upload</h2>
<div class="form">
<div class="name">
Topic Name: <input class="form-input" type="text" placeholder="Topic Name">
</div>
<div class="class">
Class: <input class="form-input" type="text" placeholder="Enter Your Class">
</div>
<div class="num">
Mobile No.: <input class="form-input" type="phone" placeholder="Enter Your Mobile Number">
</div>
<div class="mail">
E-Mail: <input class="form-input" type="email" placeholder="Enter Your E-Mail">
</div>
<div class="dob">
Date of Uploading: <input class="form-input" type="date" placeholder="Enter Date of Uploading">
</div>
<div class="cap">
Captcha: <input class="form-input" type="tel" placeholder="Enter Captcha"> <Button class="ver">Verify</Button>
</div>
<button class="ver">Upload</button>
</div>
</div>
<footer class="footer max-width-1 m-auto">
<p>CopyRight © www.ClickNotes.com | All Rights Reserved!</p>
</footer>
</body>
</html>