-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubmit.html
75 lines (63 loc) · 3.76 KB
/
submit.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta content="749113595662-95968ckdj5lsipn3ui5gjhvfhfrm4gre.apps.googleusercontent.com">
<!-- Bootstrap 4 ka code-->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
<link rel='stylesheet' href='https://use.fontawesome.com/releases/v5.4.2/css/all.css' integrity='sha384-/rXc/GQVaYpyDdyxK+ecHPVYJSN9bmVFBvjA/9eOB+pb3F2w2N6fc5qB9Ew5yIns' crossorigin='anonymous'>
<link href="https://fonts.googleapis.com/css?family=Playfair+Display|Poiret+One" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<script src="https://code.jquery.com/jquery-2.1.3.min.js"></script>
<!--Personal CSS file-->
<link rel="stylesheet" type="text/css" href="style.css">
<title>Submit</title>
</head>
<body>
<nav class="navbar fixed-top navbar-expand-lg navbar-dark scrolling-navbar">
<a class="navbar-brand" href="#" style="color: black;"><strong>Project</strong></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="home.html" style="color: black;">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="submit.html" style="color: black;">Contribute</a>
</li>
</ul>
</div>
</nav>
<div class="container" style="padding-top: 100px;padding-bottom:50px;">
<form>
<div class="form-group">
<label>Article Topic</label>
<input type="" class="form-control" id="title" placeholder="Enter the topic of your article">
</div>
<div class="form-group">
<label for="exampleFormControlTextarea1">Enter your content</label>
<textarea class="form-control" id="content" rows="3"></textarea>
</div>
<div class="form-group">
<label for="exampleFormControlTextarea1">Choose Event Location</label></br>
<input id="pac-input" class="controls" type="text" placeholder="Search Box" style="width:400px">
<div id="map" style="width:600px;height:300px"></div>
</div>
<div class="text-center">
<button type="submit" class="btn btn-primary" id="submit">Submit</button>
</div>
</form>
</div>
</body>
<script src="https://www.gstatic.com/firebasejs/5.5.6/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.5.6/firebase-database.js"></script>
<script type="text/javascript" src="submit.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAK2MPVrTUt9TPf4E8cosEPVMEwGcpVEzQ&libraries=places&callback=initAutocomplete" async defer></script>
</html>