-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path3-upload.html
More file actions
141 lines (131 loc) · 7.12 KB
/
3-upload.html
File metadata and controls
141 lines (131 loc) · 7.12 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!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="3-uploadstyle.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<title>Document</title>
</head>
<body>
<div class="container">
<nav>
<ul>
<li><a href="#" class="logo">
<img id="im" src="profile.png" alt="">
<span class="nav-head">Student Project Management System</span>
</a></li>
<li><a href="2-dashboard.html">
<!-- <i class="fas fa-home"></i> -->
<img class="nav-icon" src="Home-button.png" alt="Home">
<span class="nav-item">Home</span>
</a></li>
<li><a href="#" id="return-link">
<img class="nav-icon" src="Return-button.png" alt="Return">
<!-- <i class="fas fa-arrow-left" ></i> -->
<span class="nav-item">Return</span></a></li>
<li><a href="#">
<img class="nav-icon" src="Help-button.png" alt="help">
<!-- <i class="fas fa-question-circle"></i> -->
<span class="nav-item">Help</span></a></li>
<li><a href="1-index.html" class="logout">
<img class="nav-icon" src="Log-out-button.png" alt="Logout">
<!-- <i class="fas fa-sign-out-alt"></i> -->
<span class="nav-item">Logout</span></a></li>
</ul>
</nav>
<section class="main">
<div class="search-container">
<form action="fetch_projects.php" id="bhu" method="GET">
<div class="search">
<!-- <span class="search-icon material-symbols-outlined">search</span> -->
<span><img src="Search_Icon.png" class="nav-icon2" alt="error"></span>
<input type="search" name="query" class="search-input" placeholder="Search">
</div>
</form>
</div>
<div class="upload">
<form action="3-uploadconnect.php" method="post" enctype="multipart/form-data">
<center><h3>Project Details</h3></center>
<br>
<!-- <div class="input-box">
<h4>Project ID</h4>
<input type="text" name="project_id" placeholder="Enter your Project ID" required>
</div> -->
<div class="input-box">
<h4>Project Title</h4>
<input type="text" name="project_title" placeholder="Enter your Project title" required>
</div>
<div class="input-box">
<h4>Project Mentor</h4>
<input type="text" name="project_mentor" placeholder="Enter your Project Mentor name" required>
</div>
<div class="input-box">
<h4>Enter Academic year</h4>
<input type="text" name="academic_year" placeholder="Enter the Academic Year(Ex:2022-23)"
required>
</div>
<div class="input-box">
<h4>Problem Statement</h4>
<input type="text" name="problem_statement" placeholder="Enter your Problem Statement" required>
</div>
<!-- <div class="input-box">
<h4>Google Drive Link</h4>
<input type="text" name="google_drive_link" placeholder="Enter the project Google Drive Link" required>
</div> -->
<div class="input-box">
<h4>Team Number</h4>
<input type="text" name="team_number" placeholder="Enter your Team number" required>
</div>
<div class="hu">
<!-- class="input-box" -->
<h4>Report</h4>
<input type="file" name="report_file" placeholder="Upload your Report(pdf format only)" accept=".pdf" required>
</div><br>
<div class="input-box">
<div class="student-details">
<h4>Student Details</h4>
<div class="students-grid">
<div class="student">
<input type="text" name="student1" placeholder="Enter the name of Student 1"
required>
<input type="text" name="usn1" placeholder="Enter the USN " required>
</div><br>
<div class="student">
<input type="text" name="student2" placeholder="Enter the name of Student 2"
required>
<input type="text" name="usn2" placeholder="Enter the USN " required>
</div><br>
<div class="student">
<input type="text" name="student3" placeholder="Enter the name of Student 3"
required>
<input type="text" name="usn3" placeholder="Enter the USN " required>
</div><br>
<div class="student">
<input type="text" name="student4" placeholder="Enter the name of Student 4"
required>
<input type="text" name="usn4" placeholder="Enter the USN " required>
</div><br>
<div class="student">
<input type="text" name="student5" placeholder="Enter the name of Student 5">
<input type="text" name="usn5" placeholder="Enter the USN ">
</div><br>
</div>
</div>
</div>
</div>
<button type="submit" class="button" id="submitbutton" name="submitbutton"> Submit</button>
</form>
</div>
</section>
</div>
<script>
document.getElementById('return-link').addEventListener('click', function(event) {
event.preventDefault();
window.history.back();
});
</script>
</body>
</html>