Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions website/basic_login.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
<form action="" method="POST"> <!-- using the post method to request get details and then to the server-->
<div class="input-details">
<span class="input-group-addon" id="basic-addon3">Your Username</span> <!--entering the usernsme of the member-->
<input type="text" class="form-control" name="username" aria-describedby="basic-addon3">
<input type="text" class="form-control" name="username" aria-describedby="basic-addon3" placeholder="User Name">

</div>
<br />
<div class="input-group">
<span class="input-group-addon" id="basic-addon3">Your Password</span> <!--entering the password of the member-->
<input type="text" class="form-control" id="password" aria-describedby="basic-addon3">
<input type="text" class="form-control" id="password" aria-describedby="basic-addon3" placeholder="Password">
</div>
<br />
<input type="submit" value="login" class="btn btn-default btn-sm"> <!--submut button-->
Expand All @@ -30,4 +30,4 @@

</body>

</html>
</html>