-
Notifications
You must be signed in to change notification settings - Fork 1
/
upload.php
33 lines (28 loc) · 1.23 KB
/
upload.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contribute</title>
<link rel="stylesheet" href="ngoform.css">
</head>
<body>
<form method="post" enctype="multipart/form-data">
<div class="container" >
<h1 style="text-align: center;"> Fill Details To Upload Your Template</h1>
<hr>
<label> <b>Your Name</b> </label>
<input type="text" name="Name" placeholder= " Name" maxlength="20" required />
<label> <b>emailID</b> </label>
<input type="text" name="emailID" placeholder="email" maxlength="50" required />
<label><b>Brief about the tech stack </b> </label>
<input type="text" name="techStack" placeholder="Short Description" maxlength="150" required />
<label><b>Any special Features Used</b> </label> <br>
<textarea name="Features" placeholder="About NGO" maxlength="1000" cols="70" > </textarea><br><br>
<input type='submit' class="registerbtn">
<label><b>You will be Notified when your tempalte is approved </b></label>
</form>
</div>
</body>
</html>