forked from niyazm524/arch_client_web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sign_up.html
146 lines (144 loc) · 4.79 KB
/
sign_up.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<title>Авторизация</title>
<script
src="https://code.jquery.com/jquery-3.1.1.min.js"
crossorigin="anonymous"
></script>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/semantic-ui@2.4.2/dist/semantic.min.css"
/>
<script src="https://cdn.jsdelivr.net/npm/semantic-ui@2.4.2/dist/semantic.min.js"></script>
</head>
<style>
.for-read,
.for-write {
width: 40%;
}
.container {
position: fixed;
top: 30%;
left: 45%;
}
a {
position: fixed;
top: 54%;
left: 55%;
}
p {
color: red;
}
label {
font-family: Verdana, Geneva, Tahoma, sans-serif;
margin-top: 8%;
margin-right: 3%;
}
#first-name-input,
#last-name-input,
#login-input,
#password-input {
height: 5%;
margin-bottom: 5%;
margin-top: 5%;
}
#label1,
#label2 {
margin-right: 12%;
}
#label3 {
margin-right: 10%;
}
a {
position: fixed;
top: 70%;
left: 45%;
}
</style>
<body>
<div class="container">
<form onsubmit="sendForm()" class="for-write" id="write-form">
<div class="first-name-div ui input">
<label for="first-name-input" id="label1">Имя: </label>
<input id="first-name-input" type="text" />
</div>
<div class="last-name-div ui input">
<label for="last-name-input">Фамилия: </label>
<input id="last-name-input" type="text" />
</div>
<div class="login-div ui input">
<label for="login-input" id="label2">Логин: </label>
<input id="login-input" type="text" />
</div>
<div class="password-div ui input">
<label for="password-input" id="label3">Пароль: </label>
<input id="password-input" type="password" />
</div>
<div>
<button class="ui inverted green button" id="auth-button ">
Регистрация
</button>
<a href="http://127.0.0.1:5500/auth.html">Войти</a>
</div>
</form>
</div>
</body>
<script>
window.onload = function isToken() {
// При загрузке страницы проверять наличие токена
if (document.cookie !== "") {
// Если токен есть, то редирект на страницу авторизации
window.location.href = "auth.html";
}
};
const url = "https://sys-arch.ml/api/auth/sign_up/";
async function sendForm() {
event.preventDefault();
// Достаем данные из полей
const firstNameElement = document.getElementById("first-name-input");
const firstName = firstNameElement.value;
const lastNameElement = document.getElementById("last-name-input");
const lastName = lastNameElement.value;
const usernameElement = document.getElementById("login-input");
const email = usernameElement.value;
const passwordElement = document.getElementById("password-input");
const password = passwordElement.value;
var urlencoded = new URLSearchParams(); // Создаем объект URLSearchParams()
// Добавляем в него данные, введенные пользователем
urlencoded.append("first_name", firstName);
urlencoded.append("last_name", lastName);
urlencoded.append("email", email);
urlencoded.append("password", password);
// Отправляем запрос
const response = await fetch(url, {
method: "POST",
body: urlencoded,
headers: {
"Content-Type": "application/x-www-form-urlencoded",
},
}).then(function (response) {
// Обрабатываем статус ответа
if (response.status == "200") {
// Если 200 и токен известен, то устанавливаем куки
window.location.href = "index.html"; // Редирект
} else {
if (response.status == "400" && !document.getElementById("my_p")) {
// Если статус ответа 400 и не было выведено сообщение об ошибке
{
var errorMessage = document.createElement("p");
my_form = document.getElementById("write-form");
my_form.id = "my_p";
my_form.insertAdjacentHTML(
// Добавляем в DOM сообщение об ошибке
"afterbegin",
"<p>Пользователь с такой почтой уже существует</p>"
);
}
}
}
});
}
</script>
</html>