-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreateProject.html
More file actions
45 lines (38 loc) · 1.39 KB
/
createProject.html
File metadata and controls
45 lines (38 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="icon" href="assets/images/favicon.png">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/createProject.css">
</head>
<body>
<header>
<h1><a href="index.html">projectPulse</a></h1>
</header>
<main>
<form>
<label for="projectName">Project Name Here</label>
<input type="text" id="projectName" placeholder="Project Name Here"/>
<Label for="projectDescription">Project Description</Label>
<textarea type="text" id="projectDescription" placeholder="Type content here" rows="10"></textarea>
<p id="errorText" class="d-none"></p>
<button id="submit" type="submit" class="btn btn-primary"> Submit </button>
</form>
</main>
<footer>
<h6>Created by the Lucky13's</h6>
</footer>
<!-- Bootstrap Javascript -->
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/logic.js"></script>
<script src="assets/js/createProject.js"></script>
</body>
</html>
<footer>
<h6>Created by the Lucky13's</h6>
</footer>