-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (46 loc) · 1.87 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Upload</title>
<link rel="stylesheet" href="./styles/materialize.min.css">
<link rel="stylesheet" href="./styles/style.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="parent">
<img class="logo responsive-img" src="./images/gdg_logo.png"/>
</div>
<form method="POST" enctype="multipart/form-data" id="formData">
<div class="row">
<div class="input-field col s6">
<input id="name" type="text" class="validate" required>
<label for="name">Name</label>
</div>
<div class="input-field col s6">
<input id="regNo" type="text" class="validate" required>
<label for="regNo">Registration Number</label>
</div>
</div>
<div class="file-field input-field">
<div class="btn" style="background-color: #4885ed">
<span >File</span>
<input type="file" id="imageFile" name="photo">
</div>
<div class="file-path-wrapper">
<input class="file-path validate" type="text"/>
</div>
</div>
<div class="parent">
<a class="waves-effect waves-light btn-large" style="background-color: #4885ed" onclick="submitDet()">Submit</a>
</div>
</form>
</div>
</div>
<script src="./js/jquery-3.2.1.min.js"></script>
<script src="./js/materialize.min.js"></script>
<script src="./js/script.js"></script>
</body>
</html>