s3-3on/backend/views/profile.ejs

20 lines
655 B
Plaintext
Executable File

<%- include('header') %>
<div class="container">
<div class="row justify-content-md-center">
<div class="col-6">
<div class="card justify-content-md-center" style="padding: 20px; text-align: center;box-shadow: 0 0 4px 0 rgba(13, 110, 253, 0.3);">
<a href="
/change_propic">
<img class="profile-pic" src="<%= propic %>">
</a>
<br>
<h3 style="margin-top: 20px"><%= nickname %></h3>
<h5 style="margin-top: 10px"><%= email %></h5>
<br>
</div>
</div>
</div>
</div>
<%- include('footer') %>