| {% extends './dev.html' %} |
|
|
| {% load static %} |
|
|
| {% block title %} |
| Profile | Devnoms |
| {% endblock %} |
|
|
| {% block style %} |
| <link rel="stylesheet" href="{% static 'chat/css/profile.css' %}" /> |
| <script src="{% static 'chat/js/profile.js' %}" defer></script> |
| {% endblock %} |
|
|
| {% block content %} |
| <div class="main_box"> |
| <div class="profile_box"> |
| <div class="header"> |
| <button onclick="goBack()"><img src="https://pdf813.netlify.app/chat/img/icon/icons8-left-arrow-60.png" alt="Back" /></button> |
| <h1>Profile</h1> |
| <div class="menu"> |
| <button onclick="toggleMenu()"><img src="https://pdf813.netlify.app/chat/img/icon/icons8-menu-vertical-50.png" alt="Menu" /></button> |
| <div class="dropdown-content" id="dropdown"> |
| <a href="/edit-profile">Edit Profile</a> |
| <a href="/settings">Settings</a> |
| <a href="/logout">Logout</a> |
| <a href="#" class="dark-mode-toggle">Light Mode</a> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="profile-container"> |
| <img class="profile-image" src="https://pdf813.netlify.app/chat/img/avatar/icons8-user-male-120.png" alt="Profile Image" /> |
| <div class="username">john_doe123</div> |
| <div class="user-status"> |
| <span class="status-online">Online</span> |
| </div> |
| <div class="bio">"Hey there! I'm John, a chat enthusiast. Always online and ready to chat!"</div> |
|
|
| |
| <div class="profile-stats"> |
| <div> |
| <strong>120</strong><br /> Friends |
| </div> |
| |
| |
| |
| <div> |
| <strong>25</strong><br /> Groups |
| </div> |
| </div> |
|
|
| <div class="user-details"> |
| <p> |
| <span>Name:</span> John Doe |
| </p> |
| <p> |
| <span>Email:</span> john.doe@example.com |
| </p> |
| <p> |
| <span>Phone:</span> +123 456 7890 |
| </p> |
| <p> |
| <span>Location:</span> San Francisco, USA |
| </p> |
| </div> |
| </div> |
| </div> |
| </div> |
| {% endblock %} |
|
|