63 lines
3.2 KiB
HTML
63 lines
3.2 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||
|
<title>PagerMaid</title>
|
||
|
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
|
||
|
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.min.css" />
|
||
|
<link rel="stylesheet" href="style.css" />
|
||
|
<script defer src="https://code.getmdl.io/1.3.0/material.min.js"></script>
|
||
|
<script src="https://raw.githubusercontent.com/meyvn/mdl-selectfield/master/mdl-selectfield.min.js" defer></script>
|
||
|
<link rel="stylesheet" href="https://raw.githubusercontent.com/meyvn/mdl-selectfield/master/mdl-selectfield.min.css">
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<div class="demo-layout mdl-layout mdl-js-layout mdl-layout--fixed-drawer mdl-layout--fixed-header">
|
||
|
<header class="demo-header mdl-layout__header mdl-color--grey-100 mdl-color-text--grey-600">
|
||
|
<div class="mdl-layout__header-row">
|
||
|
<span class="mdl-layout-title">Profile</span>
|
||
|
</div>
|
||
|
</header>
|
||
|
{% include 'includes/navbar.html' %}
|
||
|
<main class="mdl-layout__content mdl-color--grey-100">
|
||
|
<div class="mdl-grid demo-content">
|
||
|
|
||
|
<div
|
||
|
class="mdl-card mdl-shadow--2dp mdl-cell mdl-cell--4-col mdl-cell--4-col-tablet mdl-cell--12-col-desktop">
|
||
|
<div class="mdl-card__title">
|
||
|
<h2 class="mdl-card__title-text">Profile</h2>
|
||
|
</div>
|
||
|
<div class="mdl-card__supporting-text">
|
||
|
<form action="">
|
||
|
<div class="mdl-textfield mdl-js-textfield w-100">
|
||
|
<label class="mdl-textfield__label">Full Name</label>
|
||
|
{{ form.full_name(placeholder="Full Name", class="mdl-textfield__input") }}
|
||
|
</div>
|
||
|
<div class="mdl-textfield mdl-js-textfield w-100">
|
||
|
<label class="mdl-textfield__label">Username</label>
|
||
|
{{ form.username(placeholder="Username", class="mdl-textfield__input") }}
|
||
|
</div>
|
||
|
<div class="mdl-textfield mdl-js-textfield w-100">
|
||
|
<label class="mdl-textfield__label">Email Address</label>
|
||
|
{{ form.email(placeholder="Email Address", class="mdl-textfield__input") }}
|
||
|
</div>
|
||
|
<div class="mdl-textfield mdl-js-textfield w-100">
|
||
|
<label class="mdl-textfield__label">Password</label>
|
||
|
{{ form.password(placeholder="Password", class="mdl-textfield__input") }}
|
||
|
</div>
|
||
|
<button class="mdl-button mdl-js-button mdl-button--raised mdl-button--colored">
|
||
|
Save
|
||
|
</button>
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
</main>
|
||
|
</div>
|
||
|
</body>
|
||
|
|
||
|
</html>
|