ccgenerative commited on
Commit
f180d5e
·
verified ·
1 Parent(s): 1ca197b

Can not login, what are the credentials. Can you please add below creds in any sample DB. username: sample@test.com / Test123#

Browse files
Files changed (1) hide show
  1. components/auth-modal.js +3 -2
components/auth-modal.js CHANGED
@@ -86,7 +86,7 @@ class AuthModal extends HTMLElement {
86
  <div class="tabs">
87
  <div class="tab active">Login</div>
88
  </div>
89
- <form id="login-form" class="tab-content active">
90
  <div class="form-group">
91
  <label for="email">Email</label>
92
  <input type="email" id="email" required>
@@ -96,8 +96,9 @@ class AuthModal extends HTMLElement {
96
  <input type="password" id="password" required>
97
  </div>
98
  <button type="submit">Sign In</button>
 
99
  </form>
100
- </div>
101
  </div>
102
  `;
103
 
 
86
  <div class="tabs">
87
  <div class="tab active">Login</div>
88
  </div>
89
+ <form id="login-form" class="tab-content active">
90
  <div class="form-group">
91
  <label for="email">Email</label>
92
  <input type="email" id="email" required>
 
96
  <input type="password" id="password" required>
97
  </div>
98
  <button type="submit">Sign In</button>
99
+ <div id="error-message" class="text-red-500 mt-2 text-sm hidden"></div>
100
  </form>
101
+ </div>
102
  </div>
103
  `;
104