You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.5 KiB
47 lines
1.5 KiB
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link href="/css/dist.css" rel="stylesheet">
|
|
<title>CSE Vote</title>
|
|
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline';" />
|
|
</head>
|
|
<body>
|
|
<div class="flex min-h-[100vh] justify-center items-center text-white">
|
|
<div class="md:max-w-[70vw] ml-auto mr-auto">
|
|
|
|
<div class="min-w-[60vw] rounded-3xl flex flex-wrap sm:flex-nowrap items-center py-10 sm:py-100 px-8 pb-10 justify-center text-center">
|
|
<div class="my-5 md:w-2/3 items-center justify-center text-center">
|
|
<p class="text-3xl pb-10 font-extrabold tracking-wide">CSE Prezenta</p>
|
|
|
|
<div class="text-center text-white">
|
|
<input type="tel" id="cod" class="text-xl rounded-xl text-black py-3 px-3 w-full" placeholder="Cod">
|
|
<p class="pb-10"> </p>
|
|
<button type="button" class="rounded-xl w-full bg-indigo-900 my-2 py-5 my-2 px-5 text-sm md:text-xl font-bold tracking-wide justify-center items-center font-[manrope]" id="ok">Adaugare la Prezenta</button>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
<script>
|
|
|
|
var cod = document.getElementById("cod");
|
|
|
|
var submit = document.getElementById("ok");
|
|
|
|
|
|
submit.addEventListener("click", function(){
|
|
var url= "/prezenta?key=" + cod.value;
|
|
location.href = url;
|
|
});
|
|
|
|
</script>
|
|
|
|
</html>
|
|
|