chatr/ChatrServer/wwwroot/create-bot/index.html

44 lines
1.8 KiB
HTML
Raw Normal View History

2022-08-24 11:34:56 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Create A Bot</title>
<link rel="stylesheet" href="./css/material.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="./css/styles.css">
<link rel="manifest" href="./site.webmanifest">
<link rel="icon" type="image/x-icon" href="./favicon.ico">
</head>
<body>
<form class="center-screen" action="./create-bot-permissions" method="POST">
<h1>Chatr Bot</h1>
<!-- Simple Textfield -->
<div class="mdl-textfield mdl-js-textfield">
<input class="mdl-textfield__input" type="text" name="botuser" id="sample1">
<label class="mdl-textfield__label" for="sample1">Bot UserName</label>
</div>
<div class="mdl-textfield mdl-js-textfield">
<input class="mdl-textfield__input" type="text" name="botname" id="sample1">
<label class="mdl-textfield__label" for="sample1">Bot Name</label>
</div>
<br>
<div class="mdl-textfield mdl-js-textfield">
<input class="mdl-textfield__input" type="text" name="botdesc" id="sample1">
<label class="mdl-textfield__label" for="sample1">Bot Description</label>
</div>
<br>
<input type="submit" class="mdl-button mdl-js-button mdl-button--raised mdl-button--colored" value="Next">
<a href="./my-bots" class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--accent">
My Bots
</a>
<a href="./">Cancel</a>
</form>
<script src="./js/material.min.js"></script>
</body>
</html>