mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 23:16:52 +08:00
47 lines
1.6 KiB
HTML
47 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
|
|
<link href="/vendor/font-awesome/css/font-awesome.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="../../dist/ionic.css">
|
|
<style>
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<section>
|
|
|
|
<header class="bar bar-header bar-primary">
|
|
<a href="#" class="button">Back</a>
|
|
<h1 class="title">Twitter</h1>
|
|
<div class="buttons">
|
|
<a href="#" class="button button-icon"><i class="icon-search"></i></a>
|
|
<a href="#" class="button button-icon"><i class="icon-search"></i></a>
|
|
<a href="#" class="button button-icon"><i class="icon-search"></i></a>
|
|
<a href="#" class="button button-icon"><i class="icon-search"></i></a>
|
|
</div>
|
|
</header>
|
|
<div class="bar bar-header-secondary">
|
|
<form>
|
|
<input type="search">
|
|
</form>
|
|
</div>
|
|
<main class="content has-header">
|
|
|
|
<form>
|
|
<div class="form-group inset">
|
|
<label class="input-wrapper row">
|
|
<span class="input-label col-xs-4">First Name</span>
|
|
<input class="col-xs-8" type="text" placeholder="John">
|
|
</label>
|
|
<label class="input-wrapper row">
|
|
<span class="input-label col-xs-4">Last Name</span>
|
|
<input class="col-xs-8" type="text" placeholder="Suhr">
|
|
</label>
|
|
</div>
|
|
<button id="login" class="button button-default button-block">Log in</button>
|
|
</form>
|
|
</main>
|
|
</section>
|
|
|
|
</body>
|
|
</html> |