Skip to content

Commit

Permalink
Create basic template for blog form
Browse files Browse the repository at this point in the history
Relates #2
Co-authored-by: akomiqaia <[email protected]>
  • Loading branch information
lizjegede committed Mar 25, 2020
1 parent fbc2ee4 commit fa7cc97
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"liveServer.settings.port": 5501
}
13 changes: 12 additions & 1 deletion homepage.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@
<title>Home</title>
</head>
<body>

<h1 class="title">Harlspace</h1>

<form class="form">
<label for="username" class="form__username--label">Username</label>
<input id="username" class="form__username--input" name="username" type="text" placeholder="Your Name">
<label for="postTitle" class="form__post-title--label">Title</label>
<input id="postTitle" name="post_title" type="text" class="form__post-title--input" placeholder="Title of your Blog">

<textarea id="blog_message" class="form__blog-message"></textarea>
<button id="submit" class="form__button--submit">Submit</button>
<button id="cancel" class="form__button--cancel">Go back</button>
</form>
</body>
</html>

0 comments on commit fa7cc97

Please sign in to comment.