Skip to content

Commit

Permalink
small login changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alfredoEP committed Feb 11, 2025
1 parent b783267 commit 1f7cb54
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
4 changes: 2 additions & 2 deletions login/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<input type="email" id="email" placeholder="Email" required>
<input type="password" id="password" placeholder="Password" required>
<div class="button-container">
<button type="submit">Login</button>
<button type="button" class="forgot-password">Forgot my password</button>
<button type="submit" class="btn">Login</button>
<button type="button" class="btn forgot-password">Forgot my password</button>
</div>
</form>
</div>
Expand Down
11 changes: 3 additions & 8 deletions login/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,27 +24,22 @@ input {
border-radius: 5px;
}

button {
.btn {
background-color: #28a745;
color: white;
padding: 10px;
border: none;
border-radius: 5px;
cursor: pointer;
margin-top: 10px;
}

button:hover {
.btn:hover {
background-color: #218838;
}

.forgot-password {
background-color: #ff9800;
color: white;
padding: 10px;
border: none;
border-radius: 5px;
cursor: pointer;
margin-top: 10px;
}

.forgot-password:hover {
Expand Down

0 comments on commit 1f7cb54

Please sign in to comment.