mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-08 15:51:16 +08:00
44 lines
1.7 KiB
HTML
44 lines
1.7 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>
|
|
<main class="content content-padded has-header">
|
|
<form class="form-horizontal">
|
|
<label class="input-wrapper row-fluid">
|
|
<span class="input-label span3">Full name</span>
|
|
<input class="span9" type="text" placeholder="">
|
|
</label>
|
|
<label class="input-wrapper row-fluid">
|
|
<span class="input-label span3">Email</span>
|
|
<input class="span9" type="email" placeholder="">
|
|
</label>
|
|
<label class="input-wrapper row-fluid">
|
|
<span class="input-label span3">Password</span>
|
|
<input class="span9" type="password" placeholder="">
|
|
</label>
|
|
<button class="button button-info button-block">Sign up</button>
|
|
</form>
|
|
<button id="login" class="button button-default button-block">Log in</button>
|
|
</main>
|
|
</section>
|
|
|
|
</body>
|
|
</html> |