17 lines
577 B
HTML
17 lines
577 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport"
|
|
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>Settings</title>
|
|
<link rel="stylesheet" href="/static/stylesheet/chat.css">
|
|
<script src="/static/js/settings.js" defer></script>
|
|
</head>
|
|
<body>
|
|
<h1>SETTINGS</h1>
|
|
<button type=button id="logout">Logout</button>
|
|
<button type="button" id="changePassword">Change password</button>
|
|
</body>
|
|
</html> |