Party/templates/createSession.html
fingadumbledore 6e09268a3f new
2022-10-19 10:58:01 +02:00

65 lines
1.9 KiB
HTML

<html>
<head>
<title>Create Session</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<style>
Body {
background-image: linear-gradient(to right, rgb(38, 134, 62), rgb(89, 89, 175))
}
button {
background-color: #4CAF50;
width: 100%;
color: orange;
padding: 15px;
margin: 10px 0px;
border: none;
cursor: pointer;
border-radius: 12px;
}
form {
}
input[type=text], input[type=password] {
width: 100%;
margin: 8px 0;
padding: 12px 20px;
display: inline-block;
border: 2px solid green;
box-sizing: border-box;
}
button:hover {
opacity: 0.7;
}
.cancelbtn {
width: auto;
padding: 10px 18px;
margin: 10px 5px;
}
.container {
padding: 25px;
background-image: linear-gradient(to right, rgb(38, 134, 62), rgb(89, 89, 175))
}
</style>
</head>
<body>
<center><h1>Create Session</h1></center>
<form class="modal-content animate" action="http://127.0.0.1:5000//get_creat_session" method="POST">
<div class="container">
<label>Session name : </label>
<input type="text" placeholder="Enter Session name" name="sessionname" required>
<label>Session Id : </label>
<input type="text" placeholder="Session Id" name="sessionid" required>
<button type="submit">create</button>
<a href="javascript:history.back()">
<button type="button" class="cancelbtn"> Cancel</button>
</div>
</form>
</body>
</html>