homeboergmann/views/profile.ejs

17 lines
537 B
Plaintext
Raw Permalink Normal View History

2024-06-06 20:45:42 +02:00
<%- include('partials/header') %>
<h1>Profile</h1>
<form action="/profile" method="post">
<div class="mb-3">
<label for="email" class="form-label">Email</label>
<input type="email" class="form-control" id="email" name="email">
</div>
<div class="mb-3">
<label for="password" class="form-label">New Password</label>
<input type="password" class="form-control" id="password" name="password">
</div>
<button type="submit" class="btn btn-primary">Update Profile</button>
</form>
<%- include('partials/footer') %>