blob: c4e5e4ef8cde1c5f318650d8baadaef6842d5507 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!--
Copyright (c) 2011 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<html>
<head>
<link rel="stylesheet" type="text/css" href="main.css" />
<title>Select Role</title>
</head>
<body>
<div id="host-or-client-choice">
<p class="message">Select role:</p>
<button class="role-select" onclick="location.replace('host.html');">
Host
</button>
<button class="role-select" onclick="location.replace('client.html');">
Client
</button>
</div>
</body>
</html>
|