我有一个 Metro 应用程序,正在尝试为我的应用程序设计登录屏幕。在这里我想设计我的登录屏幕,就像 Microsoft 登录屏幕一样。我在 XAML 中找到了 Popup 控件,但在 html 5 中没有找到。是地铁应用程序中存在任何特殊控件。我想设计我的登录页面像这样。
谢谢你。
<body style="background-color:#1d3665;">
<div class="loginPage fragment">
<header aria-label="Header content" role="banner">
<button class="win-backbutton" aria-label="Back" disabled></button>
<h1 class="titlearea win-type-ellipsis">
<span class="pagetitle">Welcome to loginPage</span>
</h1>
</header>
<section aria-label="Main content" role="main">
<table style="position: absolute;background-color:skyblue;">
<tr>
<td><input type="text"><br/></td>
</tr>
<tr>
<td>
<input type="password"/>
</td>
</tr>
</table>
</section>
</div>