-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcreateProject.html
55 lines (45 loc) · 2.57 KB
/
createProject.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="/css/main.css" />
<link rel="icon" type="image/ico/png" href="resources/images/favicon.png" />
<meta name="description" content="Fund Seeker, A web app to find and give funds">
<meta name="keywords" content="Funds Track,Fund,Seeker,Sponsor">
<meta name="author" content="Samad alias Nyein Chan">
<meta name="robots" content="index, nofollow" />
<!-- JQuery JavaScript -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- <script src="javascript/tables/fake-data/data.js"></script> -->
<title>Fund Givers</title>
</head>
<body style="background: white;">
<div id="header"></div>
<div style="max-width: 800px;margin:auto; display: flex; flex-direction: column;padding-top:50px;background: whitesmoke;padding: 20px;height: 90vh;">
<h2 style="text-align:center">New project</h2>
<form style="padding-top:10vh;">
<div class="form-group" >
<label for="exampleInputEmail1">Project name</label>
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter project name">
</div>
<div class="form-group" style="padding-top:2vh;">
<label for="exampleInputPassword1">Project description</label>
<input type="text" class="form-control" id="exampleInputPassword1" placeholder="Enter project description">
</div>
<button style="margin-top:2vh;" type="submit" class="btn btn-primary"><a style="text-decoration: none; color: white;" href="you.html">Create</a>
</button>
</form>
</div>
<div id="footer"></div>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
$("#header").load("/reusables/header.html");
$("#footer").load("/reusables/footer.html");
});</script>
</body>
</html>