75 lines
3.8 KiB
HTML
75 lines
3.8 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">Settings</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">Settings</h2>
|
|
</div>
|
|
<div class="mdl-card__supporting-text">
|
|
<form action="">
|
|
<div class="mdl-textfield mdl-js-textfield w-100">
|
|
<input class="mdl-textfield__input" type="text" id="full-name">
|
|
<label class="mdl-textfield__label" for="full-name">Full Name</label>
|
|
</div>
|
|
|
|
<div class="mdl-textfield mdl-js-textfield w-100">
|
|
<textarea class="mdl-textfield__input" type="text" rows="3" id="description"></textarea>
|
|
<label class="mdl-textfield__label" for="description">Description</label>
|
|
</div>
|
|
|
|
<label class="mdl-switch mdl-js-switch mdl-js-ripple-effect" for="switch-1">
|
|
<input type="checkbox" id="switch-1" class="mdl-switch__input" checked>
|
|
<span class="mdl-switch__label">Toggle?</span>
|
|
</label>
|
|
|
|
<div class="spacer-radio">
|
|
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect w-50" for="option-1">
|
|
<input type="radio" id="option-1" class="mdl-radio__button" name="options" value="1"
|
|
checked>
|
|
<span class="mdl-radio__label">First</span>
|
|
</label>
|
|
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-2">
|
|
<input type="radio" id="option-2" class="mdl-radio__button" name="options"
|
|
value="2">
|
|
<span class="mdl-radio__label">Second</span>
|
|
</label>
|
|
</div>
|
|
|
|
<button class="mdl-button mdl-js-button mdl-button--raised mdl-button--colored">
|
|
Save
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</main>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |