Skip to content

Commit

Permalink
create basic form html and css file
Browse files Browse the repository at this point in the history
Relates #10
  • Loading branch information
iPhatty committed Apr 11, 2018
1 parent 25bd383 commit b3a62e2
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
Empty file added Public/signup.css
Empty file.
27 changes: 27 additions & 0 deletions Public/signup.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8">
<title>Add a new workspace</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./signup.css">
</head>

<body>
<section class="section__form">
<form action="/signup" method="POST">
<label for="username">Username</label>
<input id="username" type="text" required>
<label for="password">Password</label>
<input id="password" type="password" required>
<label for="confirm-password">Confirm Password</label>
<input id="confirm-password" type="password" required>
<button type="submit">Submit</button>
</form>
</section>


</body>

</html>

0 comments on commit b3a62e2

Please sign in to comment.