freechat/freechat-client/index.html
2019-11-26 23:42:04 -08:00

36 lines
1.3 KiB
HTML

<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"/>
<link rel="stylesheet" href="./resources/css/pure.css"/>
<link rel="stylesheet" href="./src/css/welcome.css"/>
<title>Freechat</title>
</head>
<body>
<div class="pure-g">
<div class="pure-u-1-3"></div>
<div class="pure-u-1-3">
<form class="pure-form pure-form-aligned">
<fieldset>
<div class="pure-control-group">
<label for="domainname">World Domain</label>
<input id="domainname" type="text" placeholder="freechat.io">
</div>
<div class="pure-control-group">
<label for="username">Username</label>
<input id="username" type="text" placeholder="Username">
</div>
<div class="pure-control-group">
<label for="password">Password</label>
<input id="password" type="password" placeholder="Password">
</div>
<div class="pure-controls">
<button type="button" class="pure-button pure-button-primary">Submit</button>
</div>
</fieldset>
</form>
</div>
<div class="pure-u-1-3"></div>
</div>
</body>
</html>