project page fixes
This commit is contained in:
@ -1,11 +1,26 @@
|
||||
<style>
|
||||
.main_sec{
|
||||
margin: auto;
|
||||
/* display: flex; */
|
||||
text-align: center;
|
||||
}
|
||||
#reg_form{
|
||||
width: 80vw;
|
||||
margin: auto;
|
||||
}
|
||||
</style>
|
||||
|
||||
<%- include('./static/start.ejs',{name:"reg",async: true}) %>
|
||||
|
||||
<form action="" method="get" onsubmit="return false;">
|
||||
<input type="text" id="login" name="login">
|
||||
<input type="password" id="pass" name="pass">
|
||||
<input type="checkbox" name="admin" value='false' id="admin_check">
|
||||
<button onclick='reg();'>reg</button>
|
||||
<div id="reg_response"></div>
|
||||
<form action="" method="get" onsubmit="return false;" id="reg_form">
|
||||
<h1>user registration</h1>
|
||||
<section class="main_sec">
|
||||
<input type="text" id="login" name="login">
|
||||
<input type="password" id="pass" name="pass">
|
||||
<input type="checkbox" name="admin" value='false' id="admin_check">
|
||||
<button onclick='reg();'>reg</button>
|
||||
<div id="reg_response"></div>
|
||||
</section>
|
||||
<script>
|
||||
function reg(){
|
||||
console.log("reg");
|
||||
|
||||
Reference in New Issue
Block a user