Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 72e464268b | |||
| 3084820703 |
188
ИП2/css/index-style.css
Normal file
@@ -0,0 +1,188 @@
|
||||
body {
|
||||
color: #c5c6c7;
|
||||
background-color: #0b0c10;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
|
||||
/* Шапка */
|
||||
.header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
border-bottom: 3px solid #BF1723;
|
||||
border-bottom-right-radius: 25px;
|
||||
border-bottom-left-radius: 25px;
|
||||
}
|
||||
|
||||
.left-part{
|
||||
display: flex;
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
.header > .left-part > img {
|
||||
width: 50px;
|
||||
}
|
||||
|
||||
.header > .left-part > div {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.first-part {
|
||||
color:#FCD116;
|
||||
font-size: 1.4em;
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
.last-part {
|
||||
color: #BF1723;
|
||||
font-size: 1.5em;
|
||||
}
|
||||
|
||||
|
||||
.right-part{
|
||||
margin-right: 30px;
|
||||
}
|
||||
|
||||
.header > .right-part > nav > ul {
|
||||
display: flex;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.header > .right-part > nav > ul > li > a {
|
||||
display: block;
|
||||
margin-right: 10px;
|
||||
padding: 10px;
|
||||
border: 0.5px solid #FFF;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
|
||||
/* Блок регистрации */
|
||||
.login-div {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
min-height: 75vh;
|
||||
}
|
||||
|
||||
.login-page {
|
||||
width: 19%;
|
||||
background-color: #222222;
|
||||
padding: 1%;
|
||||
border-radius: 15%;
|
||||
border: 0.5px solid #BF1723;
|
||||
color: #FFF;
|
||||
}
|
||||
|
||||
h1{
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.input-box {
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
.input-div {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.remember-forgot {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 10px;
|
||||
padding: 0 10px;
|
||||
}
|
||||
|
||||
.remember-forgot label input {
|
||||
accent-color: #BF1723;
|
||||
}
|
||||
|
||||
.login-page .btn {
|
||||
width: 100%;
|
||||
background-color: #BF1723;
|
||||
border-radius: 10px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.register-link{
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* Ссылки */
|
||||
a {
|
||||
outline: none;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:link{
|
||||
color: #FCD116;
|
||||
}
|
||||
a:visited{
|
||||
color: #FCD116;
|
||||
}
|
||||
a:hover{
|
||||
color: #c5c6c7;
|
||||
}
|
||||
|
||||
|
||||
@media (max-width: 600px){
|
||||
.header {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.header > .right-part {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.header > .left-part {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.login-page {
|
||||
width: 77%;
|
||||
}
|
||||
|
||||
.register-link {
|
||||
justify-content: space-evenly;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 601px) and (max-width: 800px){
|
||||
|
||||
.login-page {
|
||||
width: 37%;
|
||||
}
|
||||
|
||||
.register-link {
|
||||
justify-content: space-evenly;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 801px) and (max-width: 1024px){
|
||||
|
||||
.login-page {
|
||||
width: 30%;
|
||||
}
|
||||
|
||||
.register-link {
|
||||
justify-content: space-evenly;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1025px) and (max-width: 1920px){
|
||||
|
||||
.login-page {
|
||||
width: 22%;
|
||||
}
|
||||
|
||||
.register-link {
|
||||
justify-content: space-evenly;
|
||||
}
|
||||
}
|
||||
|
||||
280
ИП2/css/lenta-style.css
Normal file
@@ -0,0 +1,280 @@
|
||||
body {
|
||||
color: #c5c6c7;
|
||||
background-color: #141414;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
a:link {
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:visited {
|
||||
color: white;
|
||||
}
|
||||
a:hover {
|
||||
color: #BF1723;
|
||||
background-color: #2a2a2a;
|
||||
}
|
||||
a:active {
|
||||
color: #FCD116;
|
||||
}
|
||||
img {
|
||||
width: 50px;
|
||||
}
|
||||
li {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
/* Шапка */
|
||||
.header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
border-bottom: 3px solid #BF1723;
|
||||
border-bottom-right-radius: 25px;
|
||||
border-bottom-left-radius: 25px;
|
||||
padding: 0.25% 33% 0% 33%;
|
||||
}
|
||||
|
||||
.rightpart > img {
|
||||
border-radius: 25px;
|
||||
}
|
||||
|
||||
|
||||
/* Основная страница */
|
||||
.page {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.leftbar {
|
||||
height: 100%;
|
||||
width: 10%;
|
||||
background-color: #222222;
|
||||
border-radius: 15px;
|
||||
margin: 5px;
|
||||
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
min-width: 120px;
|
||||
}
|
||||
|
||||
.leftbar-content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin: 10px 10px 5px 10px;
|
||||
}
|
||||
|
||||
.leftbar-content > a {
|
||||
margin-bottom: 5px;
|
||||
padding: 3px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.leftbar-settings {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
border-top: 1px solid rgba(128, 128, 128, 0.479);
|
||||
margin: 10px 10px 0px 10px;
|
||||
padding-top: 5px;
|
||||
}
|
||||
|
||||
.leftbar-settings > a{
|
||||
padding: 3px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.footer {
|
||||
position: relative;
|
||||
border-top: 1px solid rgba(128, 128, 128, 0.479);
|
||||
margin: 10px;
|
||||
padding-top: 5px;
|
||||
}
|
||||
|
||||
.footer > span {
|
||||
z-index: 1;
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
color: white;
|
||||
}
|
||||
|
||||
span:hover {
|
||||
color: #BF1723;
|
||||
}
|
||||
|
||||
.footer:hover .footer-menu {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
top: 150%;
|
||||
left: -8%;
|
||||
|
||||
width: 100%;
|
||||
|
||||
position: absolute;
|
||||
|
||||
background-color: #222222;
|
||||
border-radius: 10px;
|
||||
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.footer-menu {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.footer-menu > a {
|
||||
margin-bottom: 5px;
|
||||
padding: 3px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.content {
|
||||
height: 100%;
|
||||
width: 25%;
|
||||
background-color: #222222;
|
||||
border-radius: 15px;
|
||||
border: 0.1px solid #BF1723;
|
||||
margin: 5px;
|
||||
padding: 10px;
|
||||
|
||||
min-width: 250px;
|
||||
}
|
||||
|
||||
.post {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.post-header {
|
||||
margin-bottom: 10px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.image {
|
||||
position: relative;
|
||||
width: 98%;
|
||||
padding: 3px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.image .post-img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
border-radius: 2%;
|
||||
}
|
||||
|
||||
.post-footer {
|
||||
color: #fff;
|
||||
border-bottom: 0.5px solid #BF1723;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.post-footer > i {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.rightbar {
|
||||
height: 100%;
|
||||
width: 10%;
|
||||
background-color: #222222;
|
||||
border-radius: 15px;
|
||||
margin: 5px;
|
||||
|
||||
min-width: 150px;
|
||||
}
|
||||
|
||||
.rightbar-content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
.rightbar-content > a {
|
||||
margin-bottom: 5px;
|
||||
padding: 3px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.bottombar{
|
||||
display: flex;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
justify-content: space-between;
|
||||
border-top: 3px solid #BF1723;
|
||||
border-top-right-radius: 25px;
|
||||
border-top-left-radius: 25px;
|
||||
padding: 5px 0px;
|
||||
justify-content: space-evenly;
|
||||
}
|
||||
|
||||
.bottombar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.bottombar > a > img {
|
||||
width: 25px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@media (max-width: 600px){
|
||||
.header {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.header > .rightpart {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.header > .leftpart {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
|
||||
.leftbar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.rightbar{
|
||||
display: none;
|
||||
}
|
||||
|
||||
.bottombar {
|
||||
display: flex;
|
||||
background-color: #222222;
|
||||
}
|
||||
|
||||
.content {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
|
||||
.page {
|
||||
margin-bottom: 45px;
|
||||
}
|
||||
}
|
||||
|
||||
/*Tablets*/
|
||||
@media (min-width: 601px) and (max-width: 800px){
|
||||
.header {
|
||||
padding: 0.25% 25% 0% 20%;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 801px) and (max-width: 1024px){
|
||||
.header {
|
||||
padding: 0.25% 31% 0% 28%;
|
||||
}
|
||||
}
|
||||
267
ИП2/css/message-style.css
Normal file
@@ -0,0 +1,267 @@
|
||||
body {
|
||||
color: #c5c6c7;
|
||||
background-color: #141414;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
a:link {
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:visited {
|
||||
color: white;
|
||||
}
|
||||
a:hover {
|
||||
color: #BF1723;
|
||||
background-color: #2a2a2a;
|
||||
}
|
||||
a:active {
|
||||
color: #FCD116;
|
||||
}
|
||||
img {
|
||||
width: 50px;
|
||||
}
|
||||
li {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
/* Шапка */
|
||||
.header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
border-bottom: 3px solid #BF1723;
|
||||
border-bottom-right-radius: 25px;
|
||||
border-bottom-left-radius: 25px;
|
||||
padding: 0.25% 33% 0% 33%;
|
||||
}
|
||||
|
||||
.rightpart > img {
|
||||
border-radius: 25px;
|
||||
}
|
||||
|
||||
|
||||
/* Основная страница */
|
||||
.page {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.leftbar {
|
||||
height: 100%;
|
||||
width: 10%;
|
||||
background-color: #222222;
|
||||
border-radius: 15px;
|
||||
margin: 5px;
|
||||
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
min-width: 120px;
|
||||
}
|
||||
|
||||
.leftbar-content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin: 10px 10px 5px 10px;
|
||||
}
|
||||
|
||||
.leftbar-content > a {
|
||||
margin-bottom: 5px;
|
||||
padding: 3px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.leftbar-settings {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
border-top: 1px solid rgba(128, 128, 128, 0.479);
|
||||
margin: 10px 10px 0px 10px;
|
||||
padding-top: 5px;
|
||||
}
|
||||
|
||||
.leftbar-settings > a{
|
||||
padding: 3px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.footer {
|
||||
position: relative;
|
||||
border-top: 1px solid rgba(128, 128, 128, 0.479);
|
||||
margin: 10px;
|
||||
padding-top: 5px;
|
||||
}
|
||||
|
||||
.footer > span {
|
||||
z-index: 1;
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
color: white;
|
||||
}
|
||||
|
||||
span:hover {
|
||||
color: #BF1723;
|
||||
}
|
||||
|
||||
.footer:hover .footer-menu {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
top: 150%;
|
||||
left: -8%;
|
||||
|
||||
width: 100%;
|
||||
|
||||
position: absolute;
|
||||
|
||||
background-color: #222222;
|
||||
border-radius: 10px;
|
||||
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.footer-menu {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.footer-menu > a {
|
||||
margin-bottom: 5px;
|
||||
padding: 3px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.content {
|
||||
height: 100%;
|
||||
width: 25%;
|
||||
background-color: #222222;
|
||||
border-radius: 15px;
|
||||
border: 0.1px solid #BF1723;
|
||||
margin: 5px;
|
||||
padding: 10px;
|
||||
|
||||
min-width: 250px;
|
||||
}
|
||||
|
||||
.chat {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-bottom: 10px;
|
||||
padding-bottom: 10px;
|
||||
border-bottom: 0.5px solid rgba(128, 128, 128, 0.479);
|
||||
}
|
||||
|
||||
.chat > .avatar > img {
|
||||
border-radius: 25px;
|
||||
}
|
||||
|
||||
.chat-content {
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.username {
|
||||
margin: 0;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.message {
|
||||
margin: 0;
|
||||
color: rgb(158, 158, 158);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.rightbar {
|
||||
height: 100%;
|
||||
width: 10%;
|
||||
background-color: #222222;
|
||||
border-radius: 15px;
|
||||
margin: 5px;
|
||||
|
||||
min-width: 150px;
|
||||
}
|
||||
|
||||
.rightbar-content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
.rightbar-content > a {
|
||||
margin-bottom: 5px;
|
||||
padding: 3px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.bottombar{
|
||||
display: flex;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
justify-content: space-between;
|
||||
border-top: 3px solid #BF1723;
|
||||
border-top-right-radius: 25px;
|
||||
border-top-left-radius: 25px;
|
||||
padding: 5px 0px;
|
||||
justify-content: space-evenly;
|
||||
}
|
||||
|
||||
.bottombar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.bottombar > a > img {
|
||||
width: 25px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@media (max-width: 600px){
|
||||
.header {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.header > .rightpart {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.header > .leftpart {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
|
||||
.leftbar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.rightbar{
|
||||
display: none;
|
||||
}
|
||||
|
||||
.bottombar {
|
||||
display: flex;
|
||||
background-color: #222222;
|
||||
}
|
||||
|
||||
.content {
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 601px) and (max-width: 800px){
|
||||
.header {
|
||||
padding: 0.25% 25% 0% 20%;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 801px) and (max-width: 1024px){
|
||||
.header {
|
||||
padding: 0.25% 31% 0% 28%;
|
||||
}
|
||||
}
|
||||
285
ИП2/css/profile-style.css
Normal file
@@ -0,0 +1,285 @@
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
color: #c5c6c7;
|
||||
background-color: #141414;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
a:link {
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:visited {
|
||||
color: white;
|
||||
}
|
||||
a:hover {
|
||||
color: #BF1723;
|
||||
background-color: #2a2a2a;
|
||||
}
|
||||
a:active {
|
||||
color: #FCD116;
|
||||
}
|
||||
img {
|
||||
width: 50px;
|
||||
}
|
||||
li {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
/* Шапка */
|
||||
.header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
border-bottom: 3px solid #BF1723;
|
||||
border-bottom-right-radius: 25px;
|
||||
border-bottom-left-radius: 25px;
|
||||
padding: 0.25% 33% 0% 33%;
|
||||
}
|
||||
|
||||
.rightpart > img {
|
||||
border-radius: 25px;
|
||||
}
|
||||
|
||||
|
||||
/* Основная страница */
|
||||
.page {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.leftbar {
|
||||
height: 100%;
|
||||
width: 10%;
|
||||
background-color: #222222;
|
||||
border-radius: 15px;
|
||||
margin: 5px;
|
||||
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
min-width: 120px;
|
||||
}
|
||||
|
||||
.leftbar-content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin: 10px 10px 5px 10px;
|
||||
}
|
||||
|
||||
.leftbar-content > a {
|
||||
margin-bottom: 5px;
|
||||
padding: 3px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.leftbar-settings {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
border-top: 1px solid rgba(128, 128, 128, 0.479);
|
||||
margin: 10px 10px 0px 10px;
|
||||
padding-top: 5px;
|
||||
}
|
||||
|
||||
.leftbar-settings > a{
|
||||
padding: 3px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.footer {
|
||||
position: relative;
|
||||
border-top: 1px solid rgba(128, 128, 128, 0.479);
|
||||
margin: 10px;
|
||||
padding-top: 5px;
|
||||
}
|
||||
|
||||
.footer > span {
|
||||
z-index: 1;
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
color: white;
|
||||
}
|
||||
|
||||
span:hover {
|
||||
color: #BF1723;
|
||||
}
|
||||
|
||||
.footer:hover .footer-menu {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
top: 150%;
|
||||
left: -8%;
|
||||
|
||||
width: 115%;
|
||||
|
||||
position: absolute;
|
||||
|
||||
background-color: #222222;
|
||||
border-radius: 10px;
|
||||
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.footer-menu {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.footer-menu > a {
|
||||
margin-bottom: 5px;
|
||||
padding: 3px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.profile-card {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
max-width: 250px;
|
||||
width: 100%;
|
||||
background-color: #222222;
|
||||
border-radius: 25px;
|
||||
padding: 25px;
|
||||
}
|
||||
|
||||
.image {
|
||||
position: relative;
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
border-radius: 50%;
|
||||
background-color: #FCD116;
|
||||
padding: 3px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.image .profile-img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
border-radius: 50%;
|
||||
border: 3px solid #FFF;
|
||||
}
|
||||
|
||||
.profile-card .text-data {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.text-data .name {
|
||||
font-size: 22px;
|
||||
font-weight: 500;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.text-data .about {
|
||||
font-size: 15px;
|
||||
font-weight: 400;
|
||||
color: #fff;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.profile-card .more-info {
|
||||
width: 90%;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.rightbar {
|
||||
height: 100%;
|
||||
width: 10%;
|
||||
background-color: #222222;
|
||||
border-radius: 15px;
|
||||
margin: 5px;
|
||||
|
||||
min-width: 150px;
|
||||
}
|
||||
|
||||
.rightbar-content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
.rightbar-content > a {
|
||||
margin-bottom: 5px;
|
||||
padding: 3px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.bottombar{
|
||||
display: flex;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
justify-content: space-between;
|
||||
border-top: 3px solid #BF1723;
|
||||
border-top-right-radius: 25px;
|
||||
border-top-left-radius: 25px;
|
||||
padding: 5px 0px;
|
||||
justify-content: space-evenly;
|
||||
}
|
||||
|
||||
.bottombar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.bottombar > a > img {
|
||||
width: 25px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@media (max-width: 600px){
|
||||
.header {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.header > .rightpart {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.header > .leftpart {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
|
||||
.leftbar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.rightbar{
|
||||
display: none;
|
||||
}
|
||||
|
||||
.bottombar {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.content {
|
||||
height: 500px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 601px) and (max-width: 800px){
|
||||
.header {
|
||||
padding: 0.25% 25% 0% 20%;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 801px) and (max-width: 1024px){
|
||||
.header {
|
||||
padding: 0.25% 31% 0% 28%;
|
||||
}
|
||||
}
|
||||
181
ИП2/css/signup-style.css
Normal file
@@ -0,0 +1,181 @@
|
||||
body {
|
||||
color: #c5c6c7;
|
||||
background-color: #0b0c10;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
|
||||
/* Шапка */
|
||||
.header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
border-bottom: 3px solid #BF1723;
|
||||
border-bottom-right-radius: 25px;
|
||||
border-bottom-left-radius: 25px;
|
||||
}
|
||||
|
||||
.left-part{
|
||||
display: flex;
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
.header > .left-part > img {
|
||||
width: 50px;
|
||||
}
|
||||
|
||||
.header > .left-part > div {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.first-part {
|
||||
color:#FCD116;
|
||||
font-size: 1.4em;
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
.last-part {
|
||||
color: #BF1723;
|
||||
font-size: 1.5em;
|
||||
}
|
||||
|
||||
|
||||
.right-part{
|
||||
margin-right: 30px;
|
||||
}
|
||||
|
||||
.header > .right-part > nav > ul {
|
||||
display: flex;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.header > .right-part > nav > ul > li > a {
|
||||
display: block;
|
||||
margin-right: 10px;
|
||||
padding: 10px;
|
||||
border: 0.5px solid #FFF;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
|
||||
/* Блок регистрации */
|
||||
.login-div {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
min-height: 75vh;
|
||||
}
|
||||
|
||||
.login-page {
|
||||
width: 19%;
|
||||
background-color: #222222;
|
||||
padding: 1%;
|
||||
border-radius: 15%;
|
||||
border: 0.5px solid #BF1723;
|
||||
color: #FFF;
|
||||
}
|
||||
|
||||
h1{
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.input-box {
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
.input-div {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.remember-forgot {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 10px;
|
||||
padding: 0 10px;
|
||||
}
|
||||
|
||||
.remember-forgot label input {
|
||||
accent-color: #BF1723;
|
||||
}
|
||||
|
||||
.login-page .btn {
|
||||
width: 100%;
|
||||
background-color: #BF1723;
|
||||
border-radius: 10px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.register-link{
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.register-link > a {
|
||||
margin-right: 50px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* Ссылки */
|
||||
a {
|
||||
outline: none;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:link{
|
||||
color: #FCD116;
|
||||
}
|
||||
a:visited{
|
||||
color: #FCD116;
|
||||
}
|
||||
a:hover{
|
||||
color: #c5c6c7;
|
||||
}
|
||||
|
||||
@media (max-width: 600px){
|
||||
.header {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.header > .right-part {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.header > .left-part {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.login-page {
|
||||
width: 77%;
|
||||
}
|
||||
|
||||
.register-link {
|
||||
justify-content: space-evenly;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 601px) and (max-width: 800px){
|
||||
|
||||
.login-page {
|
||||
width: 37%;
|
||||
}
|
||||
|
||||
.register-link {
|
||||
justify-content: space-evenly;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 801px) and (max-width: 1024px){
|
||||
|
||||
.login-page {
|
||||
width: 30%;
|
||||
}
|
||||
|
||||
.register-link {
|
||||
justify-content: space-evenly;
|
||||
}
|
||||
}
|
||||
|
||||
62
ИП2/index.html
Normal file
@@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>СОЦИАЛьная сеть</title>
|
||||
<link rel="stylesheet" href="css/index-style.css" />
|
||||
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
|
||||
</head>
|
||||
<body>
|
||||
<div class="header">
|
||||
<div class="left-part">
|
||||
<img src="source/logo.svg" alt="">
|
||||
<div>
|
||||
<p class="first-part">СОЦИАЛ</p>
|
||||
<p class="last-part">ьная сеть</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="right-part">
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="messages.html">Войти</a></li>
|
||||
<li><a href="signup.html">Зарегистрироваться</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="login-div">
|
||||
<div class="login-page">
|
||||
<form action="">
|
||||
<h1>Авторизация</h1>
|
||||
|
||||
<div class="input-div">
|
||||
<div class="input-box">
|
||||
<input type="text" placeholder="Логин">
|
||||
<i class='bx bxs-user'></i>
|
||||
</div>
|
||||
<div class="input-box">
|
||||
<input type="password" placeholder="Пароль">
|
||||
<i class='bx bxs-lock-alt' ></i>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="remember-forgot">
|
||||
<label><input type="checkbox">Запомнить меня</label>
|
||||
<a href="#">Забыли пароль?</a>
|
||||
</div>
|
||||
|
||||
<button type="submit" class="btn">Войти</button>
|
||||
|
||||
<div class="register-link">
|
||||
<p>У меня нет аккаунта</p>
|
||||
<a href="signup.html">Зарегистрироваться</a>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
136
ИП2/lenta.html
Normal file
@@ -0,0 +1,136 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Лента новостей</title>
|
||||
<link rel="stylesheet" href="css/lenta-style.css" />
|
||||
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
|
||||
</head>
|
||||
<body>
|
||||
<header class="header">
|
||||
<span class="leftpart">
|
||||
<img src="source/logo.svg" alt="" class="logo">
|
||||
</span>
|
||||
|
||||
<span class="rightpart">
|
||||
<img src="source/photo.jpg" alt="" class="account-image">
|
||||
</span>
|
||||
</header>
|
||||
|
||||
<div class="page">
|
||||
<div class="leftbar">
|
||||
<div class="leftbar-content">
|
||||
<a href="profile.html">Профиль</a>
|
||||
<a href="lenta.html">Лента</a>
|
||||
<a href="messages.html">Сообщения</a>
|
||||
</div>
|
||||
|
||||
<div class="leftbar-settings">
|
||||
<a href="index.html">Настройки</a>
|
||||
</div>
|
||||
|
||||
<div class="footer">
|
||||
<span>Ещё ▼</span>
|
||||
<div class="footer-menu">
|
||||
<a href="#">Разработчикам</a>
|
||||
<a href="#">О нас</a>
|
||||
<a href="#">Правовая информация</a>
|
||||
<a href="#">Помощь</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="content">
|
||||
<div class="post">
|
||||
<div class="post-header">
|
||||
<i class='bx bxs-group'></i>
|
||||
<label>Какая-то группа 1</label>
|
||||
</div>
|
||||
<div class="image">
|
||||
<img src="source/meme1.jpg" class="post-img"/>
|
||||
</div>
|
||||
<div class="post-footer">
|
||||
<i class='bx bx-like' >8</i>
|
||||
<i class='bx bx-message-square-dots' >2</i>
|
||||
<i class='bx bx-reply' >1</i>
|
||||
</div>
|
||||
</div>
|
||||
<div class="post">
|
||||
<div class="post-header">
|
||||
<i class='bx bxs-group'></i>
|
||||
<label>Какая-то группа 2</label>
|
||||
</div>
|
||||
<div class="image">
|
||||
<img src="source/meme2.jpg" class="post-img"/>
|
||||
</div>
|
||||
<div class="post-footer">
|
||||
<i class='bx bx-like' >785</i>
|
||||
<i class='bx bx-message-square-dots' >102</i>
|
||||
<i class='bx bx-reply' >14</i>
|
||||
</div>
|
||||
</div>
|
||||
<div class="post">
|
||||
<div class="post-header">
|
||||
<i class='bx bxs-group'></i>
|
||||
<label>Какая-то группа 3</label>
|
||||
</div>
|
||||
<div class="image">
|
||||
<img src="source/meme3.jpg" class="post-img"/>
|
||||
</div>
|
||||
<div class="post-footer">
|
||||
<i class='bx bx-like' >156</i>
|
||||
<i class='bx bx-message-square-dots' >10</i>
|
||||
<i class='bx bx-reply' >0</i>
|
||||
</div>
|
||||
</div>
|
||||
<div class="post">
|
||||
<div class="post-header">
|
||||
<i class='bx bxs-group'></i>
|
||||
<label>Какая-то группа 4</label>
|
||||
</div>
|
||||
<div class="image">
|
||||
<img src="source/meme4.jpg" class="post-img"/>
|
||||
<label>Горшок для ФИСТа, в котором хранится прах студентов, которые не сдали сессию</label>
|
||||
</div>
|
||||
<div class="post-footer">
|
||||
<i class='bx bx-like' >456</i>
|
||||
<i class='bx bx-message-square-dots' >32</i>
|
||||
<i class='bx bx-reply' >4</i>
|
||||
</div>
|
||||
</div>
|
||||
<div class="post">
|
||||
<div class="post-header">
|
||||
<i class='bx bxs-group'></i>
|
||||
<label>Какая-то группа 5</label>
|
||||
</div>
|
||||
<div class="image">
|
||||
<img src="source/meme5.jpg" class="post-img"/>
|
||||
</div>
|
||||
<div class="post-footer">
|
||||
<i class='bx bx-like' >1067</i>
|
||||
<i class='bx bx-message-square-dots' >467</i>
|
||||
<i class='bx bx-reply' >56</i>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="rightbar">
|
||||
<div class="rightbar-content">
|
||||
<a href="#">Все</a>
|
||||
<a href="#">Непрочитанные</a>
|
||||
<a href="#">Архив</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="bottombar">
|
||||
<a href="lenta.html"><img src="source/home-icon.svg" alt=""></a>
|
||||
<a href="messages.html"><img src="source/message-icon.svg" alt=""></a>
|
||||
<a href="profile.html"><img src="source/profile-icon.svg" alt=""></a>
|
||||
<a href="index.html"><img src="source/exit-icon.svg" alt=""></a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
132
ИП2/messages.html
Normal file
@@ -0,0 +1,132 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Сообщения</title>
|
||||
<link rel="stylesheet" href="css/message-style.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header class="header">
|
||||
<span class="leftpart">
|
||||
<img src="source/logo.svg" alt="" class="logo">
|
||||
</span>
|
||||
|
||||
<span class="rightpart">
|
||||
<img src="source/photo.jpg" alt="" class="account-image">
|
||||
</span>
|
||||
</header>
|
||||
|
||||
<div class="page">
|
||||
<div class="leftbar">
|
||||
<div class="leftbar-content">
|
||||
<a href="profile.html">Профиль</a>
|
||||
<a href="lenta.html">Лента</a>
|
||||
<a href="messages.html">Сообщения</a>
|
||||
</div>
|
||||
|
||||
<div class="leftbar-settings">
|
||||
<a href="index.html">Настройки</a>
|
||||
</div>
|
||||
|
||||
<div class="footer">
|
||||
<span>Ещё ▼</span>
|
||||
<div class="footer-menu">
|
||||
<a href="#">Разработчикам</a>
|
||||
<a href="#">О нас</a>
|
||||
<a href="#">Правовая информация</a>
|
||||
<a href="#">Помощь</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="content">
|
||||
<div class="chat">
|
||||
<div class="avatar">
|
||||
<img src="source/photo.jpg" alt="" class="avatar">
|
||||
</div>
|
||||
|
||||
<div class="chat-content">
|
||||
<h3 class="username">username</h3>
|
||||
<p class="message">Сделал вторую лабу</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="chat">
|
||||
<div class="avatar">
|
||||
<img src="source/photo.jpg" alt="" class="avatar">
|
||||
</div>
|
||||
|
||||
<div class="chat-content">
|
||||
<h3 class="username">username</h3>
|
||||
<p class="message">Сделал вторую лабу</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="chat">
|
||||
<div class="avatar">
|
||||
<img src="source/photo.jpg" alt="" class="avatar">
|
||||
</div>
|
||||
|
||||
<div class="chat-content">
|
||||
<h3 class="username">username</h3>
|
||||
<p class="message">Сделал вторую лабу</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="chat">
|
||||
<div class="avatar">
|
||||
<img src="source/photo.jpg" alt="" class="avatar">
|
||||
</div>
|
||||
|
||||
<div class="chat-content">
|
||||
<h3 class="username">username</h3>
|
||||
<p class="message">Сделал вторую лабу</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="chat">
|
||||
<div class="avatar">
|
||||
<img src="source/photo.jpg" alt="" class="avatar">
|
||||
</div>
|
||||
|
||||
<div class="chat-content">
|
||||
<h3 class="username">username</h3>
|
||||
<p class="message">Сделал вторую лабу</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="chat">
|
||||
<div class="avatar">
|
||||
<img src="source/photo.jpg" alt="" class="avatar">
|
||||
</div>
|
||||
|
||||
<div class="chat-content">
|
||||
<h3 class="username">username</h3>
|
||||
<p class="message">Сделал вторую лабу</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="rightbar">
|
||||
<div class="rightbar-content">
|
||||
<a href="#">Все</a>
|
||||
<a href="#">Непрочитанные</a>
|
||||
<a href="#">Архив</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="bottombar">
|
||||
<a href="lenta.html"><img src="source/home-icon.svg" alt=""></a>
|
||||
<a href="messages.html"><img src="source/message-icon.svg" alt=""></a>
|
||||
<a href="profile.html"><img src="source/profile-icon.svg" alt=""></a>
|
||||
<a href="index.html"><img src="source/exit-icon.svg" alt=""></a>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
84
ИП2/profile.html
Normal file
@@ -0,0 +1,84 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Ваш профиль</title>
|
||||
<link rel="stylesheet" href="css/profile-style.css" />
|
||||
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
|
||||
</head>
|
||||
<body>
|
||||
<header class="header">
|
||||
<span class="leftpart">
|
||||
<img src="source/logo.svg" alt="" class="logo">
|
||||
</span>
|
||||
|
||||
<span class="rightpart">
|
||||
<img src="source/photo.jpg" alt="" class="account-image">
|
||||
</span>
|
||||
</header>
|
||||
|
||||
<div class="page">
|
||||
<div class="leftbar">
|
||||
<div class="leftbar-content">
|
||||
<a href="profile.html">Профиль</a>
|
||||
<a href="lenta.html">Лента</a>
|
||||
<a href="messages.html">Сообщения</a>
|
||||
</div>
|
||||
|
||||
<div class="leftbar-settings">
|
||||
<a href="index.html">Настройки</a>
|
||||
</div>
|
||||
|
||||
<div class="footer">
|
||||
<span>Ещё ▼</span>
|
||||
<div class="footer-menu">
|
||||
<a href="#">Разработчикам</a>
|
||||
<a href="#">О нас</a>
|
||||
<a href="#">Правовая информация</a>
|
||||
<a href="#">Помощь</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="profile-card">
|
||||
<div class="image">
|
||||
<img src="source/photo.jpg" alt="" class="profile-img">
|
||||
</div>
|
||||
|
||||
<div class="text-data">
|
||||
<span class="name">Павел Ладягин</span>
|
||||
<span class="about">Краткая информация о себе</span>
|
||||
</div>
|
||||
|
||||
<div class="more-info">
|
||||
<div class="location">
|
||||
<i class='bx bx-current-location'></i>
|
||||
<label>Ульяновск</label>
|
||||
</div>
|
||||
<div class="education">
|
||||
<i class='bx bxs-school'></i>
|
||||
<label>УлГТУ</label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="rightbar">
|
||||
<div class="rightbar-content">
|
||||
<a href="#">Все</a>
|
||||
<a href="#">Непрочитанные</a>
|
||||
<a href="#">Архив</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="bottombar">
|
||||
<a href="lenta.html"><img src="source/home-icon.svg" alt=""></a>
|
||||
<a href="messages.html"><img src="source/message-icon.svg" alt=""></a>
|
||||
<a href="profile.html"><img src="source/profile-icon.svg" alt=""></a>
|
||||
<a href="index.html"><img src="source/exit-icon.svg" alt=""></a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
64
ИП2/signup.html
Normal file
@@ -0,0 +1,64 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>СОЦИАЛьная сеть</title>
|
||||
<link rel="stylesheet" href="css/signup-style.css" />
|
||||
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
|
||||
</head>
|
||||
<body>
|
||||
<div class="header">
|
||||
<div class="left-part">
|
||||
<img src="source/logo.svg" alt="">
|
||||
<div>
|
||||
<p class="first-part">СОЦИАЛ</p>
|
||||
<p class="last-part">ьная сеть</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="right-part">
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="messages.html">Войти</a></li>
|
||||
<li><a href="#">Зарегистрироваться</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="login-div">
|
||||
<div class="login-page">
|
||||
<form action="">
|
||||
<h1>Регистрация</h1>
|
||||
<div class="input-div">
|
||||
<div class="input-box">
|
||||
<input type="text" placeholder="Логин">
|
||||
<i class='bx bxs-user'></i>
|
||||
</div>
|
||||
<div class="input-box">
|
||||
<input type="password" placeholder="Пароль">
|
||||
<i class='bx bxs-lock-alt' ></i>
|
||||
</div>
|
||||
<div class="input-box">
|
||||
<input type="password" placeholder="Подтвердите пароль">
|
||||
<i class='bx bxs-lock-alt' ></i>
|
||||
</div>
|
||||
<div class="input-box">
|
||||
<input type="text" placeholder="Почта">
|
||||
<i class='bx bx-envelope'></i>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<button type="submit" class="btn">Зарегистрироваться</button>
|
||||
|
||||
<div class="register-link">
|
||||
<p>У меня есть аккаунта</p>
|
||||
<a href="index.html">Войти</a>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
Before Width: | Height: | Size: 403 B After Width: | Height: | Size: 403 B |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 53 KiB After Width: | Height: | Size: 53 KiB |
|
Before Width: | Height: | Size: 158 KiB After Width: | Height: | Size: 158 KiB |
|
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 44 KiB |
|
Before Width: | Height: | Size: 102 KiB After Width: | Height: | Size: 102 KiB |
|
Before Width: | Height: | Size: 52 KiB After Width: | Height: | Size: 52 KiB |
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 356 KiB After Width: | Height: | Size: 356 KiB |
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.9 KiB |
|
Before Width: | Height: | Size: 8.1 KiB After Width: | Height: | Size: 8.1 KiB |
BIN
ИП2/Отчет_2.docx
Normal file
23
ИП6/111/.gitignore
vendored
@@ -1,23 +0,0 @@
|
||||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
||||
|
||||
# dependencies
|
||||
/node_modules
|
||||
/.pnp
|
||||
.pnp.js
|
||||
|
||||
# testing
|
||||
/coverage
|
||||
|
||||
# production
|
||||
/build
|
||||
|
||||
# misc
|
||||
.DS_Store
|
||||
.env.local
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
@@ -1,70 +0,0 @@
|
||||
# Getting Started with Create React App
|
||||
|
||||
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
|
||||
|
||||
## Available Scripts
|
||||
|
||||
In the project directory, you can run:
|
||||
|
||||
### `npm start`
|
||||
|
||||
Runs the app in the development mode.\
|
||||
Open [http://localhost:3000](http://localhost:3000) to view it in your browser.
|
||||
|
||||
The page will reload when you make changes.\
|
||||
You may also see any lint errors in the console.
|
||||
|
||||
### `npm test`
|
||||
|
||||
Launches the test runner in the interactive watch mode.\
|
||||
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
|
||||
|
||||
### `npm run build`
|
||||
|
||||
Builds the app for production to the `build` folder.\
|
||||
It correctly bundles React in production mode and optimizes the build for the best performance.
|
||||
|
||||
The build is minified and the filenames include the hashes.\
|
||||
Your app is ready to be deployed!
|
||||
|
||||
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
|
||||
|
||||
### `npm run eject`
|
||||
|
||||
**Note: this is a one-way operation. Once you `eject`, you can't go back!**
|
||||
|
||||
If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
|
||||
|
||||
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.
|
||||
|
||||
You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.
|
||||
|
||||
## Learn More
|
||||
|
||||
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
|
||||
|
||||
To learn React, check out the [React documentation](https://reactjs.org/).
|
||||
|
||||
### Code Splitting
|
||||
|
||||
This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)
|
||||
|
||||
### Analyzing the Bundle Size
|
||||
|
||||
This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)
|
||||
|
||||
### Making a Progressive Web App
|
||||
|
||||
This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)
|
||||
|
||||
### Advanced Configuration
|
||||
|
||||
This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)
|
||||
|
||||
### Deployment
|
||||
|
||||
This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)
|
||||
|
||||
### `npm run build` fails to minify
|
||||
|
||||
This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
|
||||
18202
ИП6/111/package-lock.json
generated
@@ -1,45 +0,0 @@
|
||||
{
|
||||
"name": "111",
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@testing-library/dom": "^10.4.0",
|
||||
"@testing-library/jest-dom": "^6.6.3",
|
||||
"@testing-library/react": "^16.3.0",
|
||||
"@testing-library/user-event": "^13.5.0",
|
||||
"axios": "^1.9.0",
|
||||
"bootstrap": "^5.3.6",
|
||||
"bootstrap-icons": "^1.13.1",
|
||||
"json-server": "^1.0.0-beta.3",
|
||||
"react": "^19.1.0",
|
||||
"react-dom": "^19.1.0",
|
||||
"react-router-dom": "^7.6.0",
|
||||
"react-scripts": "5.0.1",
|
||||
"web-vitals": "^2.1.4"
|
||||
},
|
||||
"scripts": {
|
||||
"start": "react-scripts start",
|
||||
"build": "react-scripts build",
|
||||
"test": "react-scripts test",
|
||||
"eject": "react-scripts eject",
|
||||
"server": "json-server --watch public/db.json --port 3001"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": [
|
||||
"react-app",
|
||||
"react-app/jest"
|
||||
]
|
||||
},
|
||||
"browserslist": {
|
||||
"production": [
|
||||
">0.2%",
|
||||
"not dead",
|
||||
"not op_mini all"
|
||||
],
|
||||
"development": [
|
||||
"last 1 chrome version",
|
||||
"last 1 firefox version",
|
||||
"last 1 safari version"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,3 +0,0 @@
|
||||
{
|
||||
"posts": []
|
||||
}
|
||||
@@ -1,43 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<meta name="theme-color" content="#000000" />
|
||||
<meta
|
||||
name="description"
|
||||
content="Web site created using create-react-app"
|
||||
/>
|
||||
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
|
||||
<!--
|
||||
manifest.json provides metadata used when your web app is installed on a
|
||||
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
|
||||
-->
|
||||
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
|
||||
<!--
|
||||
Notice the use of %PUBLIC_URL% in the tags above.
|
||||
It will be replaced with the URL of the `public` folder during the build.
|
||||
Only files inside the `public` folder can be referenced from the HTML.
|
||||
|
||||
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
|
||||
work correctly both with client-side routing and a non-root public URL.
|
||||
Learn how to configure a non-root public URL by running `npm run build`.
|
||||
-->
|
||||
<title>React App</title>
|
||||
</head>
|
||||
<body>
|
||||
<noscript>You need to enable JavaScript to run this app.</noscript>
|
||||
<div id="root"></div>
|
||||
<!--
|
||||
This HTML file is a template.
|
||||
If you open it directly in the browser, you will see an empty page.
|
||||
|
||||
You can add webfonts, meta tags, or analytics to this file.
|
||||
The build step will place the bundled scripts into the <body> tag.
|
||||
|
||||
To begin the development, run `npm start` or `yarn start`.
|
||||
To create a production bundle, use `npm run build` or `yarn build`.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
||||
|
Before Width: | Height: | Size: 5.2 KiB |
|
Before Width: | Height: | Size: 9.4 KiB |
@@ -1,25 +0,0 @@
|
||||
{
|
||||
"short_name": "React App",
|
||||
"name": "Create React App Sample",
|
||||
"icons": [
|
||||
{
|
||||
"src": "favicon.ico",
|
||||
"sizes": "64x64 32x32 24x24 16x16",
|
||||
"type": "image/x-icon"
|
||||
},
|
||||
{
|
||||
"src": "logo192.png",
|
||||
"type": "image/png",
|
||||
"sizes": "192x192"
|
||||
},
|
||||
{
|
||||
"src": "logo512.png",
|
||||
"type": "image/png",
|
||||
"sizes": "512x512"
|
||||
}
|
||||
],
|
||||
"start_url": ".",
|
||||
"display": "standalone",
|
||||
"theme_color": "#000000",
|
||||
"background_color": "#ffffff"
|
||||
}
|
||||
@@ -1,3 +0,0 @@
|
||||
# https://www.robotstxt.org/robotstxt.html
|
||||
User-agent: *
|
||||
Disallow:
|
||||
@@ -1,38 +0,0 @@
|
||||
.App {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.App-logo {
|
||||
height: 40vmin;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
@media (prefers-reduced-motion: no-preference) {
|
||||
.App-logo {
|
||||
animation: App-logo-spin infinite 20s linear;
|
||||
}
|
||||
}
|
||||
|
||||
.App-header {
|
||||
background-color: #282c34;
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: calc(10px + 2vmin);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.App-link {
|
||||
color: #61dafb;
|
||||
}
|
||||
|
||||
@keyframes App-logo-spin {
|
||||
from {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
to {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
@@ -1,27 +0,0 @@
|
||||
import { BrowserRouter as Router, Routes, Route } from 'react-router-dom';
|
||||
import FeedPage from './pages/FeedPage';
|
||||
import MessagesPage from './pages/MessagesPage';
|
||||
import ProfilePage from './pages/ProfilePage';
|
||||
import LoginPage from './pages/LoginPage';
|
||||
import SignupPage from './pages/SignupPage';
|
||||
import NotFoundPage from './pages/NotFoundPage';
|
||||
import 'bootstrap/dist/css/bootstrap.min.css';
|
||||
import 'bootstrap-icons/font/bootstrap-icons.css';
|
||||
|
||||
|
||||
function App() {
|
||||
return (
|
||||
<Router>
|
||||
<Routes>
|
||||
<Route path="/" element={<LoginPage />} />
|
||||
<Route path="/signup" element={<SignupPage />} />
|
||||
<Route path="/feed" element={<FeedPage />} />
|
||||
<Route path="/messages" element={<MessagesPage />} />
|
||||
<Route path="/profile" element={<ProfilePage />} />
|
||||
<Route path="*" element={<NotFoundPage />} />
|
||||
</Routes>
|
||||
</Router>
|
||||
);
|
||||
}
|
||||
|
||||
export default App;
|
||||
@@ -1,8 +0,0 @@
|
||||
import { render, screen } from '@testing-library/react';
|
||||
import App from './App';
|
||||
|
||||
test('renders learn react link', () => {
|
||||
render(<App />);
|
||||
const linkElement = screen.getByText(/learn react/i);
|
||||
expect(linkElement).toBeInTheDocument();
|
||||
});
|
||||
@@ -1,11 +0,0 @@
|
||||
.bottombar{
|
||||
bottom: 0;
|
||||
border-top: 3px solid #BF1723;
|
||||
border-top-right-radius: 25px;
|
||||
border-top-left-radius: 25px;
|
||||
background-color: #222222;
|
||||
}
|
||||
|
||||
.bottombar > a > img {
|
||||
width: 25px;
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
import './Bottombar.css'
|
||||
import { Link } from 'react-router-dom';
|
||||
|
||||
export default function Bottombar() {
|
||||
return(
|
||||
<div class="bottombar d-flex d-sm-none position-fixed w-100 justify-content-evenly py-2 px-0">
|
||||
<Link to="/feed"><img src="../images/home-icon.svg" alt="" /></Link>
|
||||
<Link to="/messages"><img src="../images/message-icon.svg" alt="" /></Link>
|
||||
<Link to="/profile"><img src="../images/profile-icon.svg" alt="" /></Link>
|
||||
<Link to="/"><img src="../images/exit-icon.svg" alt="" /></Link>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
@@ -1,15 +0,0 @@
|
||||
.chat {
|
||||
border-bottom: 0.5px solid rgba(128, 128, 128, 0.479);
|
||||
}
|
||||
|
||||
.chat > .avatar > img {
|
||||
border-radius: 25px;
|
||||
}
|
||||
|
||||
.username {
|
||||
color: white;
|
||||
}
|
||||
|
||||
.message {
|
||||
color: rgb(158, 158, 158);
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
import './Chat.css'
|
||||
|
||||
export default function Chat({ username, message, avatarUrl }) {
|
||||
return(
|
||||
<div class="chat d-flex align-items-center mb-2 pb-2">
|
||||
<div class="avatar">
|
||||
<img src={avatarUrl} alt="" class="avatar" />
|
||||
</div>
|
||||
|
||||
<div class="chat-content ms-2">
|
||||
<h3 class="username m-0">{username}</h3>
|
||||
<p class="message m-0">{message}</p>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
/* Шапка */
|
||||
header .container-fluid {
|
||||
display: flex;
|
||||
justify-content: space-evenly;
|
||||
|
||||
border-bottom: 3px solid #BF1723;
|
||||
border-bottom-right-radius: 25px;
|
||||
border-bottom-left-radius: 25px;
|
||||
}
|
||||
.left-part{
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.right-part > img {
|
||||
border-radius: 25px;
|
||||
}
|
||||
@@ -1,17 +0,0 @@
|
||||
import './Header.css'
|
||||
|
||||
export default function Header() {
|
||||
return(
|
||||
<header>
|
||||
<div class="container-fluid">
|
||||
<div class="left-part">
|
||||
<img src="../images/logo.svg" alt="Logo" width="50" />
|
||||
</div>
|
||||
|
||||
<div class="right-part d-none d-sm-flex me-4 my-1">
|
||||
<img src="../images/photo.jpg" alt="" class="account-image" />
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
)
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
/* Шапка */
|
||||
header .container-fluid {
|
||||
border-bottom: 3px solid #BF1723;
|
||||
border-bottom-right-radius: 25px;
|
||||
border-bottom-left-radius: 25px;
|
||||
}
|
||||
|
||||
.first-part {
|
||||
color:#FCD116;
|
||||
font-size: 1.4em;
|
||||
}
|
||||
|
||||
.last-part {
|
||||
color: #BF1723;
|
||||
font-size: 1.5em;
|
||||
}
|
||||
@@ -1,27 +0,0 @@
|
||||
import './HeaderAuth.css'
|
||||
import { Link } from 'react-router-dom';
|
||||
|
||||
export default function Header() {
|
||||
return(
|
||||
<header>
|
||||
<div className="container-fluid d-flex justify-content-evenly">
|
||||
<div className="left-part d-flex">
|
||||
<img src="/images/logo.svg" alt="Logo" width="50" />
|
||||
<div className="d-flex align-items-center pt-3">
|
||||
<p className="first-part ms-3">СОЦИАЛ</p>
|
||||
<p className="last-part">ьная сеть</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="right-part d-none d-sm-flex me-4 pt-3">
|
||||
<nav>
|
||||
<ul className="d-flex list-unstyled p-0 m-0">
|
||||
<li><Link className="d-block me-2 p-2" to="/feed">Войти</Link></li>
|
||||
<li><Link className="d-block me-2 p-2" to="/signup">Зарегистрироваться</Link></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
)
|
||||
}
|
||||
@@ -1,76 +0,0 @@
|
||||
.custom-link:link {
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
}
|
||||
.custom-link:visited {
|
||||
color: white;
|
||||
}
|
||||
.custom-link:hover {
|
||||
color: #BF1723;
|
||||
background-color: #2a2a2a;
|
||||
}
|
||||
.custom-link:active {
|
||||
color: #FCD116;
|
||||
}
|
||||
|
||||
.leftbar {
|
||||
width: 10%;
|
||||
background-color: #222222;
|
||||
border-radius: 15px;
|
||||
|
||||
min-width: 120px;
|
||||
}
|
||||
|
||||
.leftbar-content > .custom-link {
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.leftbar-settings {
|
||||
border-top: 1px solid rgba(128, 128, 128, 0.479);
|
||||
}
|
||||
|
||||
.leftbar-settings > .custom-link{
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.footer {
|
||||
border-top: 1px solid rgba(128, 128, 128, 0.479);
|
||||
}
|
||||
|
||||
.footer > span {
|
||||
z-index: 1;
|
||||
cursor: pointer;
|
||||
color: white;
|
||||
}
|
||||
|
||||
span:hover {
|
||||
color: #BF1723;
|
||||
}
|
||||
|
||||
.footer:hover .footer-menu {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
top: 150%;
|
||||
left: -6%;
|
||||
|
||||
width: 110%;
|
||||
|
||||
position: absolute;
|
||||
|
||||
background-color: #222222;
|
||||
border-radius: 10px;
|
||||
|
||||
padding: 10px;
|
||||
|
||||
min-width: 120px;
|
||||
}
|
||||
|
||||
.footer-menu {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.footer-menu > a {
|
||||
border-radius: 5px;
|
||||
}
|
||||
@@ -1,30 +0,0 @@
|
||||
import 'bootstrap/dist/css/bootstrap.min.css';
|
||||
import 'bootstrap/dist/js/bootstrap.bundle.min';
|
||||
import { Link } from 'react-router-dom';
|
||||
import './Leftbar.css'
|
||||
|
||||
export default function Leftbar() {
|
||||
return(
|
||||
<div class="leftbar d-none h-100 m-1 d-sm-flex flex-column">
|
||||
<div class="leftbar-content d-flex flex-column mt-2 mx-2 mb-1">
|
||||
<Link className="custom-link mb-1 p-1" to="/profile">Профиль</Link>
|
||||
<Link className="custom-link mb-1 p-1" to="/feed">Лента</Link>
|
||||
<Link className="custom-link mb-1 p-1" to="/messages">Сообщения</Link>
|
||||
</div>
|
||||
|
||||
<div class="leftbar-settings d-flex flex-column mt-2 mx-2 mb-0 pt-1">
|
||||
<Link className="custom-link p-1" >Настройки</Link>
|
||||
</div>
|
||||
|
||||
<div class="footer position-relative m-2 pt-1">
|
||||
<span class="position-relative">Ещё ▼</span>
|
||||
<div class="footer-menu">
|
||||
<Link className="custom-link mb-1 p-1" href="#">Разработчикам</Link>
|
||||
<Link className="custom-link mb-1 p-1" href="#">О нас</Link>
|
||||
<Link className="custom-link mb-1 p-1" href="#">Правовая информация</Link>
|
||||
<Link className="custom-link mb-1 p-1" href="#">Помощь</Link>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
@@ -1,62 +0,0 @@
|
||||
export const Post = ({ post, onEdit, onDelete }) => {
|
||||
const formatDate = (dateString) => {
|
||||
const date = new Date(dateString);
|
||||
const now = new Date();
|
||||
const diffInHours = Math.floor((now - date) / (1000 * 60 * 60));
|
||||
|
||||
if (diffInHours < 24) {
|
||||
return date.toLocaleTimeString([], { hour: '2-digit', minute: '2-digit' });
|
||||
} else {
|
||||
return date.toLocaleDateString([], { day: 'numeric', month: 'long' });
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<div className="post mb-3">
|
||||
<div className="post-header mb-2 d-flex justify-content-between align-items-center">
|
||||
<div>
|
||||
<i className='bi bi-people'></i>
|
||||
<label>{post.group}</label>
|
||||
</div>
|
||||
<div>
|
||||
<button
|
||||
className="btn btn-sm btn-outline-secondary me-1"
|
||||
onClick={() => onEdit(post)}
|
||||
>
|
||||
<i className="bi bi-pencil"></i>
|
||||
</button>
|
||||
<button
|
||||
className="btn btn-sm btn-outline-danger"
|
||||
onClick={() => onDelete(post.id)}
|
||||
>
|
||||
<i className="bi bi-trash"></i>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Блок с изображением */}
|
||||
{post.image && (
|
||||
<div className="image position-relative w-98 p-1 mb-2">
|
||||
<img
|
||||
src={post.image}
|
||||
className="post-img w-100 h-100 object-fit-cover"
|
||||
alt="Post content"
|
||||
/>
|
||||
</div>
|
||||
)}
|
||||
|
||||
{/* Текст */}
|
||||
{post.text && <div className="post-text mb-2 p-2">{post.text}</div>}
|
||||
|
||||
{/* Подвал */}
|
||||
<div className="post-footer p-1">
|
||||
<i className='bi bi-heart me-2'><span className="ms-1">{post.likes}</span></i>
|
||||
<i className='bi bi-chat-left me-2'><span className="ms-1">{post.comments}</span></i>
|
||||
<i className='bi bi-reply me-2'><span className="ms-1">{post.shares}</span></i>
|
||||
</div>
|
||||
<div className="mt-2">
|
||||
{formatDate(post.createdAt)}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
@@ -1,106 +0,0 @@
|
||||
import { useState, useRef } from 'react';
|
||||
import 'bootstrap-icons/font/bootstrap-icons.css';
|
||||
|
||||
export const PostForm = ({ onSubmit, onCancel, initialData = {} }) => {
|
||||
const [formData, setFormData] = useState({
|
||||
text: initialData.text || '',
|
||||
image: null,
|
||||
imagePreview: initialData.image || ''
|
||||
});
|
||||
|
||||
const fileInputRef = useRef(null);
|
||||
|
||||
const handleInputChange = (e) => {
|
||||
setFormData({ ...formData, text: e.target.value });
|
||||
};
|
||||
|
||||
const handleImageChange = (e) => {
|
||||
const file = e.target.files[0];
|
||||
if (file) {
|
||||
const reader = new FileReader();
|
||||
reader.onloadend = () => {
|
||||
setFormData({
|
||||
...formData,
|
||||
image: file,
|
||||
imagePreview: reader.result
|
||||
});
|
||||
};
|
||||
reader.readAsDataURL(file);
|
||||
}
|
||||
};
|
||||
|
||||
const handleSubmit = (e) => {
|
||||
e.preventDefault();
|
||||
if (!formData.text && !formData.image) {
|
||||
alert('Пост должен содержать текст или изображение');
|
||||
return;
|
||||
}
|
||||
onSubmit(formData);
|
||||
};
|
||||
|
||||
const triggerFileInput = () => {
|
||||
fileInputRef.current.click();
|
||||
};
|
||||
|
||||
return (
|
||||
<div className="add-post-form mb-4 pb-3">
|
||||
<h5>{initialData.id ? 'Редактировать пост' : 'Новый пост'}</h5>
|
||||
<form onSubmit={handleSubmit}>
|
||||
<div className="mb-3">
|
||||
<textarea
|
||||
className="form-control"
|
||||
placeholder="Напишите что-нибудь..."
|
||||
rows="3"
|
||||
value={formData.text}
|
||||
onChange={handleInputChange}
|
||||
></textarea>
|
||||
</div>
|
||||
<div className="mb-3">
|
||||
<button
|
||||
type="button"
|
||||
className="btn btn-outline-secondary"
|
||||
onClick={triggerFileInput}
|
||||
>
|
||||
<i className="bi bi-image"></i> {formData.imagePreview ? 'Заменить изображение' : 'Выбрать изображение'}
|
||||
</button>
|
||||
<input
|
||||
type="file"
|
||||
ref={fileInputRef}
|
||||
accept="image/*"
|
||||
className="d-none"
|
||||
onChange={handleImageChange}
|
||||
/>
|
||||
{formData.imagePreview && (
|
||||
<div className="mt-2">
|
||||
<img
|
||||
src={formData.imagePreview}
|
||||
className="img-thumbnail"
|
||||
style={{ maxHeight: '200px' }}
|
||||
alt="Превью"
|
||||
/>
|
||||
<button
|
||||
type="button"
|
||||
className="btn btn-sm btn-outline-danger ms-2"
|
||||
onClick={() => setFormData({ ...formData, image: null, imagePreview: '' })}
|
||||
>
|
||||
<i className="bi bi-trash"></i>
|
||||
</button>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
<div className="d-flex justify-content-between">
|
||||
<button
|
||||
type="button"
|
||||
className="btn btn-outline-secondary"
|
||||
onClick={onCancel}
|
||||
>
|
||||
Отмена
|
||||
</button>
|
||||
<button type="submit" className="btn btn-danger">
|
||||
<i className="bi bi-send"></i> {initialData.id ? 'Обновить' : 'Опубликовать'}
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
@@ -1,27 +0,0 @@
|
||||
.custom-link:link {
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
}
|
||||
.custom-link:visited {
|
||||
color: white;
|
||||
}
|
||||
.custom-link:hover {
|
||||
color: #BF1723;
|
||||
background-color: #2a2a2a;
|
||||
}
|
||||
.custom-link:active {
|
||||
color: #FCD116;
|
||||
}
|
||||
|
||||
.rightbar {
|
||||
height: 100%;
|
||||
width: 10%;
|
||||
background-color: #222222;
|
||||
border-radius: 15px;
|
||||
|
||||
min-width: 150px;
|
||||
}
|
||||
|
||||
.rightbar-content > a {
|
||||
border-radius: 5px;
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
import './Rightbar.css'
|
||||
import 'bootstrap/dist/css/bootstrap.min.css';
|
||||
import 'bootstrap/dist/js/bootstrap.bundle.min';
|
||||
import { Link } from 'react-router-dom';
|
||||
|
||||
export default function Rightbar() {
|
||||
return(
|
||||
<div class="rightbar d-none d-sm-flex m-1">
|
||||
<div class="rightbar-content d-flex flex-column m-2">
|
||||
<Link className="custom-link mb-1 p-1">Все</Link>
|
||||
<Link className="custom-link mb-1 p-1">Непрочитанные</Link>
|
||||
<Link className="custom-link mb-1 p-1">Архив</Link>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
@@ -1,44 +0,0 @@
|
||||
import { useState, useEffect } from 'react';
|
||||
import axios from 'axios';
|
||||
|
||||
const API_URL = 'http://localhost:3000/posts';
|
||||
|
||||
export default function usePosts() {
|
||||
const [posts, setPosts] = useState([]);
|
||||
|
||||
const fetchPosts = async () => {
|
||||
try {
|
||||
const res = await axios.get(API_URL);
|
||||
setPosts(res.data.sort((a, b) => new Date(b.createdAt) - new Date(a.createdAt)));
|
||||
} catch (error) {
|
||||
console.error('Ошибка при загрузке постов:', error);
|
||||
}
|
||||
};
|
||||
|
||||
const createPost = async (post) => {
|
||||
await axios.post(API_URL, post);
|
||||
fetchPosts();
|
||||
};
|
||||
|
||||
const updatePost = async (id, data) => {
|
||||
await axios.put(`${API_URL}/${id}`, data);
|
||||
fetchPosts();
|
||||
};
|
||||
|
||||
const deletePost = async (id) => {
|
||||
await axios.delete(`${API_URL}/${id}`);
|
||||
fetchPosts();
|
||||
};
|
||||
|
||||
const likePost = async (id) => {
|
||||
const post = posts.find(p => p.id === id);
|
||||
await axios.put(`${API_URL}/${id}`, { ...post, likes: post.likes + 1 });
|
||||
fetchPosts();
|
||||
};
|
||||
|
||||
useEffect(() => {
|
||||
fetchPosts();
|
||||
}, []);
|
||||
|
||||
return { posts, createPost, updatePost, deletePost, likePost };
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
|
||||
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
|
||||
sans-serif;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
code {
|
||||
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
|
||||
monospace;
|
||||
}
|
||||
@@ -1,17 +0,0 @@
|
||||
import React from 'react';
|
||||
import ReactDOM from 'react-dom/client';
|
||||
import './index.css';
|
||||
import App from './App';
|
||||
import reportWebVitals from './reportWebVitals';
|
||||
|
||||
const root = ReactDOM.createRoot(document.getElementById('root'));
|
||||
root.render(
|
||||
<React.StrictMode>
|
||||
<App />
|
||||
</React.StrictMode>
|
||||
);
|
||||
|
||||
// If you want to start measuring performance in your app, pass a function
|
||||
// to log results (for example: reportWebVitals(console.log))
|
||||
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
|
||||
reportWebVitals();
|
||||
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 841.9 595.3"><g fill="#61DAFB"><path d="M666.3 296.5c0-32.5-40.7-63.3-103.1-82.4 14.4-63.6 8-114.2-20.2-130.4-6.5-3.8-14.1-5.6-22.4-5.6v22.3c4.6 0 8.3.9 11.4 2.6 13.6 7.8 19.5 37.5 14.9 75.7-1.1 9.4-2.9 19.3-5.1 29.4-19.6-4.8-41-8.5-63.5-10.9-13.5-18.5-27.5-35.3-41.6-50 32.6-30.3 63.2-46.9 84-46.9V78c-27.5 0-63.5 19.6-99.9 53.6-36.4-33.8-72.4-53.2-99.9-53.2v22.3c20.7 0 51.4 16.5 84 46.6-14 14.7-28 31.4-41.3 49.9-22.6 2.4-44 6.1-63.6 11-2.3-10-4-19.7-5.2-29-4.7-38.2 1.1-67.9 14.6-75.8 3-1.8 6.9-2.6 11.5-2.6V78.5c-8.4 0-16 1.8-22.6 5.6-28.1 16.2-34.4 66.7-19.9 130.1-62.2 19.2-102.7 49.9-102.7 82.3 0 32.5 40.7 63.3 103.1 82.4-14.4 63.6-8 114.2 20.2 130.4 6.5 3.8 14.1 5.6 22.5 5.6 27.5 0 63.5-19.6 99.9-53.6 36.4 33.8 72.4 53.2 99.9 53.2 8.4 0 16-1.8 22.6-5.6 28.1-16.2 34.4-66.7 19.9-130.1 62-19.1 102.5-49.9 102.5-82.3zm-130.2-66.7c-3.7 12.9-8.3 26.2-13.5 39.5-4.1-8-8.4-16-13.1-24-4.6-8-9.5-15.8-14.4-23.4 14.2 2.1 27.9 4.7 41 7.9zm-45.8 106.5c-7.8 13.5-15.8 26.3-24.1 38.2-14.9 1.3-30 2-45.2 2-15.1 0-30.2-.7-45-1.9-8.3-11.9-16.4-24.6-24.2-38-7.6-13.1-14.5-26.4-20.8-39.8 6.2-13.4 13.2-26.8 20.7-39.9 7.8-13.5 15.8-26.3 24.1-38.2 14.9-1.3 30-2 45.2-2 15.1 0 30.2.7 45 1.9 8.3 11.9 16.4 24.6 24.2 38 7.6 13.1 14.5 26.4 20.8 39.8-6.3 13.4-13.2 26.8-20.7 39.9zm32.3-13c5.4 13.4 10 26.8 13.8 39.8-13.1 3.2-26.9 5.9-41.2 8 4.9-7.7 9.8-15.6 14.4-23.7 4.6-8 8.9-16.1 13-24.1zM421.2 430c-9.3-9.6-18.6-20.3-27.8-32 9 .4 18.2.7 27.5.7 9.4 0 18.7-.2 27.8-.7-9 11.7-18.3 22.4-27.5 32zm-74.4-58.9c-14.2-2.1-27.9-4.7-41-7.9 3.7-12.9 8.3-26.2 13.5-39.5 4.1 8 8.4 16 13.1 24 4.7 8 9.5 15.8 14.4 23.4zM420.7 163c9.3 9.6 18.6 20.3 27.8 32-9-.4-18.2-.7-27.5-.7-9.4 0-18.7.2-27.8.7 9-11.7 18.3-22.4 27.5-32zm-74 58.9c-4.9 7.7-9.8 15.6-14.4 23.7-4.6 8-8.9 16-13 24-5.4-13.4-10-26.8-13.8-39.8 13.1-3.1 26.9-5.8 41.2-7.9zm-90.5 125.2c-35.4-15.1-58.3-34.9-58.3-50.6 0-15.7 22.9-35.6 58.3-50.6 8.6-3.7 18-7 27.7-10.1 5.7 19.6 13.2 40 22.5 60.9-9.2 20.8-16.6 41.1-22.2 60.6-9.9-3.1-19.3-6.5-28-10.2zM310 490c-13.6-7.8-19.5-37.5-14.9-75.7 1.1-9.4 2.9-19.3 5.1-29.4 19.6 4.8 41 8.5 63.5 10.9 13.5 18.5 27.5 35.3 41.6 50-32.6 30.3-63.2 46.9-84 46.9-4.5-.1-8.3-1-11.3-2.7zm237.2-76.2c4.7 38.2-1.1 67.9-14.6 75.8-3 1.8-6.9 2.6-11.5 2.6-20.7 0-51.4-16.5-84-46.6 14-14.7 28-31.4 41.3-49.9 22.6-2.4 44-6.1 63.6-11 2.3 10.1 4.1 19.8 5.2 29.1zm38.5-66.7c-8.6 3.7-18 7-27.7 10.1-5.7-19.6-13.2-40-22.5-60.9 9.2-20.8 16.6-41.1 22.2-60.6 9.9 3.1 19.3 6.5 28.1 10.2 35.4 15.1 58.3 34.9 58.3 50.6-.1 15.7-23 35.6-58.4 50.6zM320.8 78.4z"/><circle cx="420.9" cy="296.5" r="45.7"/><path d="M520.5 78.1z"/></g></svg>
|
||||
|
Before Width: | Height: | Size: 2.6 KiB |
@@ -1,113 +0,0 @@
|
||||
import React, { useState, useEffect } from 'react';
|
||||
import { PostService } from '../services/PostService';
|
||||
import { PostForm } from '../components/PostForm';
|
||||
import { Post } from '../components/Post';
|
||||
import Header from '../components/Header/Header';
|
||||
import Leftbar from '../components/Leftbar/Leftbar';
|
||||
import Rightbar from '../components/Rightbar/Rightbar';
|
||||
import Bottombar from '../components/Bottombar/Bottombar';
|
||||
import 'bootstrap/dist/css/bootstrap.min.css';
|
||||
import 'bootstrap-icons/font/bootstrap-icons.css';
|
||||
import './css/FeedPage.css';
|
||||
|
||||
const FeedPage = () => {const [posts, setPosts] = useState([]);
|
||||
const [showForm, setShowForm] = useState(false);
|
||||
const [editingPost, setEditingPost] = useState(null);
|
||||
|
||||
|
||||
useEffect(() => {
|
||||
const savedPosts = PostService.getPosts();
|
||||
setPosts(savedPosts || PostService.getInitialPosts());
|
||||
}, []);
|
||||
|
||||
|
||||
useEffect(() => {
|
||||
if (posts.length > 0) {
|
||||
PostService.savePosts(posts);
|
||||
}
|
||||
}, [posts]);
|
||||
|
||||
const handleShowForm = () => {
|
||||
setShowForm(true);
|
||||
setEditingPost(null);
|
||||
};
|
||||
|
||||
const handleSubmit = (formData) => {
|
||||
const newPost = {
|
||||
id: editingPost ? editingPost.id : Date.now(),
|
||||
text: formData.text,
|
||||
image: formData.image ? URL.createObjectURL(formData.image) : formData.imagePreview,
|
||||
group: 'Моя группа',
|
||||
likes: editingPost ? editingPost.likes : 0,
|
||||
comments: editingPost ? editingPost.comments : 0,
|
||||
shares: editingPost ? editingPost.shares : 0,
|
||||
createdAt: editingPost ? editingPost.createdAt : new Date().toISOString()
|
||||
};
|
||||
|
||||
if (editingPost) {
|
||||
setPosts(posts.map(post => post.id === editingPost.id ? newPost : post));
|
||||
} else {
|
||||
setPosts([newPost, ...posts]);
|
||||
}
|
||||
|
||||
setShowForm(false);
|
||||
setEditingPost(null);
|
||||
};
|
||||
|
||||
const handleEdit = (post) => {
|
||||
setEditingPost(post);
|
||||
setShowForm(true);
|
||||
};
|
||||
|
||||
const handleDelete = (postId) => {
|
||||
if (window.confirm('Вы уверены, что хотите удалить этот пост?')) {
|
||||
setPosts(posts.filter(post => post.id !== postId));
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<div>
|
||||
<header><Header /></header>
|
||||
|
||||
<main>
|
||||
<section className='w-100'>
|
||||
<div className="page d-flex justify-content-center mt-3">
|
||||
<Leftbar />
|
||||
|
||||
<div className="content h-100 w-25 m-1 p-2 mb-5 d-flex flex-column justify-content-center">
|
||||
<button
|
||||
className="btn btn-danger add-post-btn m-3"
|
||||
onClick={handleShowForm}
|
||||
>
|
||||
<i className="bi bi-plus-circle"></i> Добавить пост
|
||||
</button>
|
||||
|
||||
{showForm && (
|
||||
<PostForm
|
||||
onSubmit={handleSubmit}
|
||||
onCancel={() => setShowForm(false)}
|
||||
initialData={editingPost || {}}
|
||||
/>
|
||||
)}
|
||||
|
||||
{posts.map(post => (
|
||||
<Post
|
||||
key={post.id}
|
||||
post={post}
|
||||
onEdit={handleEdit}
|
||||
onDelete={handleDelete}
|
||||
/>
|
||||
))}
|
||||
</div>
|
||||
|
||||
<Rightbar />
|
||||
</div>
|
||||
|
||||
<Bottombar />
|
||||
</section>
|
||||
</main>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default FeedPage;
|
||||
@@ -1,58 +0,0 @@
|
||||
import React from 'react';
|
||||
import { Link, useNavigate } from 'react-router-dom';
|
||||
import HeaderAuth from '../components/HeaderAuth/HeaderAuth';
|
||||
import 'bootstrap/dist/css/bootstrap.min.css';
|
||||
import 'bootstrap-icons/font/bootstrap-icons.css';
|
||||
import './css/LoginPage.css';
|
||||
|
||||
const LoginPage = () => {
|
||||
|
||||
return (
|
||||
<div>
|
||||
<header>
|
||||
<HeaderAuth />
|
||||
</header>
|
||||
|
||||
<section>
|
||||
<div
|
||||
className="container-fluid d-flex justify-content-center align-items-center"
|
||||
style={{ height: 'calc(100vh - 200px)' }}
|
||||
>
|
||||
<div
|
||||
className="login-page"
|
||||
style={{ minWidth: 300, maxWidth: 400, width: '100%' }}
|
||||
>
|
||||
<form className="px-3">
|
||||
<h1 className="text-center">Авторизация</h1>
|
||||
|
||||
<div className="input-div d-flex flex-column align-items-center mb-2">
|
||||
<div className="input-box my-1">
|
||||
<input type="text" placeholder="Логин" required />
|
||||
<i className="bi bi-person"></i>
|
||||
</div>
|
||||
<div className="input-box my-1">
|
||||
<input type="password" placeholder="Пароль" required />
|
||||
<i className="bi bi-shield-lock"></i>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="remember-forgot d-flex justify-content-evenly mb-2 px-2">
|
||||
<label><input type="checkbox" /> Запомнить меня</label>
|
||||
<a href="#">Забыли пароль?</a>
|
||||
</div>
|
||||
|
||||
<button type="submit" className="btn w-100">Войти</button>
|
||||
|
||||
<div className="register-link d-flex justify-content-evenly align-items-center">
|
||||
<p className="pt-3">У меня нет аккаунта</p>
|
||||
<Link to="/signup">Зарегистрироваться</Link>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default LoginPage;
|
||||
@@ -1,42 +0,0 @@
|
||||
import React from 'react';
|
||||
import Header from '../components/Header/Header';
|
||||
import Leftbar from '../components/Leftbar/Leftbar';
|
||||
import Rightbar from '../components/Rightbar/Rightbar';
|
||||
import Bottombar from '../components/Bottombar/Bottombar';
|
||||
import Chat from '../components/Chat/Chat';
|
||||
import 'bootstrap/dist/css/bootstrap.min.css';
|
||||
import 'bootstrap-icons/font/bootstrap-icons.css';
|
||||
import './css/MessagePage.css';
|
||||
import chatData from './chatData.json';
|
||||
|
||||
const MessagesPage = () => {
|
||||
|
||||
return (
|
||||
<div>
|
||||
<header><Header /></header>
|
||||
|
||||
<section>
|
||||
<div class="page d-flex justify-content-center mt-3">
|
||||
<Leftbar />
|
||||
|
||||
<div class="content h-100 w-25 m-1 p-2">
|
||||
{chatData.map((chat, index) => (
|
||||
<Chat
|
||||
key={index}
|
||||
username={chat.username}
|
||||
message={chat.message}
|
||||
avatarUrl={chat.avatarUrl}
|
||||
/>
|
||||
))}
|
||||
</div>
|
||||
|
||||
<Rightbar />
|
||||
</div>
|
||||
|
||||
<Bottombar />
|
||||
</section>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default MessagesPage;
|
||||
@@ -1,12 +0,0 @@
|
||||
const NotFoundPage = () => {
|
||||
|
||||
return (
|
||||
<div>
|
||||
<p>404</p>
|
||||
<p>Страница не найдена</p>
|
||||
<p>Something went wrong</p>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default NotFoundPage;
|
||||
@@ -1,50 +0,0 @@
|
||||
import React from 'react';
|
||||
import Header from '../components/Header/Header';
|
||||
import Leftbar from '../components/Leftbar/Leftbar';
|
||||
import Rightbar from '../components/Rightbar/Rightbar';
|
||||
import Bottombar from '../components/Bottombar/Bottombar';
|
||||
import 'bootstrap/dist/css/bootstrap.min.css';
|
||||
import 'bootstrap-icons/font/bootstrap-icons.css';
|
||||
import './css/ProfilePage.css';
|
||||
|
||||
const ProfilePage = () => {
|
||||
return (
|
||||
<div>
|
||||
<header><Header /></header>
|
||||
|
||||
<section>
|
||||
<div class="page d-flex justify-content-center mt-3">
|
||||
<Leftbar />
|
||||
|
||||
<div class="profile-card d-flex flex-column align-items-center p-4">
|
||||
<div class="imagep position-relative p-1 mb-2">
|
||||
<img src="../images/photo.jpg" alt="" class="profile-img w-100 h-100 object-fit-cover" />
|
||||
</div>
|
||||
|
||||
<div class="text-data d-flex flex-column align-items-center">
|
||||
<span class="name">Павел Ладягин</span>
|
||||
<span class="about">Краткая информация о себе</span>
|
||||
</div>
|
||||
|
||||
<div class="more-info d-flex justify-content-between">
|
||||
<div class="location">
|
||||
<i class="bi bi-geo-alt"></i>
|
||||
<label>Ульяновск</label>
|
||||
</div>
|
||||
<div class="education">
|
||||
<i class="bi bi-buildings"></i>
|
||||
<label>УлГТУ</label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<Rightbar />
|
||||
</div>
|
||||
|
||||
<Bottombar />
|
||||
</section>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default ProfilePage;
|
||||
@@ -1,59 +0,0 @@
|
||||
import { Link, useNavigate } from 'react-router-dom';
|
||||
import HeaderAuth from '../components/HeaderAuth/HeaderAuth';
|
||||
import 'bootstrap/dist/css/bootstrap.min.css';
|
||||
import 'bootstrap-icons/font/bootstrap-icons.css';
|
||||
import './css/SignupPage.css';
|
||||
|
||||
const SignupPage = () => {
|
||||
|
||||
return (
|
||||
<div>
|
||||
<header>
|
||||
<HeaderAuth />
|
||||
</header>
|
||||
|
||||
<section>
|
||||
<div className="container-fluid d-flex justify-content-center align-items-center" style={{ height: 'calc(100vh - 200px)' }}>
|
||||
<div className="login-page" style={{ minWidth: 300, maxWidth: 400, width: '100%' }}>
|
||||
<form className="px-3">
|
||||
<h1 className="text-center">Авторизация</h1>
|
||||
|
||||
<div className="input-div d-flex flex-column align-items-center mb-2">
|
||||
<div className="input-box my-1">
|
||||
<input type="text" placeholder="Логин" />
|
||||
<i className="bi bi-person"></i>
|
||||
</div>
|
||||
<div className="input-box my-1">
|
||||
<input type="password" placeholder="Пароль" />
|
||||
<i className="bi bi-shield-lock"></i>
|
||||
</div>
|
||||
<div className="input-box my-1">
|
||||
<input type="password" placeholder="Подтвердите пароль" />
|
||||
<i className="bi bi-shield-lock"></i>
|
||||
</div>
|
||||
<div className="input-box my-1">
|
||||
<input type="text" placeholder="Почта" />
|
||||
<i className="bi bi-envelope"></i>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="remember-forgot d-flex justify-content-evenly mb-2 px-2">
|
||||
<label><input type="checkbox" /> Запомнить меня</label>
|
||||
<a href="#">Забыли пароль?</a>
|
||||
</div>
|
||||
|
||||
<button type="submit" className="btn w-100">Войти</button>
|
||||
|
||||
<div className="register-link d-flex justify-content-evenly align-items-center">
|
||||
<p className="pt-3">У меня есть аккаунт</p>
|
||||
<Link to="/">Войти</Link>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default SignupPage;
|
||||
@@ -1,29 +0,0 @@
|
||||
[
|
||||
{
|
||||
"username": "Иван Иванов",
|
||||
"message": "Сделал вторую лабу",
|
||||
"avatarUrl": "../images/photo.jpg"
|
||||
},
|
||||
{
|
||||
"username": "Мария Петрова",
|
||||
"message": "Привет, как дела?",
|
||||
"avatarUrl": "../images/meme1.jpg"
|
||||
},
|
||||
{
|
||||
"username": "Алексей Смирнов",
|
||||
"message": "Готовлюсь к экзамену",
|
||||
"avatarUrl": "../images/meme2.jpg"
|
||||
},
|
||||
{
|
||||
"username": "Елена Васильева",
|
||||
"message": "Жду feedback по проекту",
|
||||
"avatarUrl": "../images/logo.svg"
|
||||
},
|
||||
{
|
||||
"username": "Елена Васильева11111",
|
||||
"message": "Жду feedback по проекту",
|
||||
"avatarUrl": "../images/profile-icon.svg"
|
||||
}
|
||||
|
||||
|
||||
]
|
||||
@@ -1,90 +0,0 @@
|
||||
body {
|
||||
color: #c5c6c7;
|
||||
background-color: #141414;
|
||||
}
|
||||
img {
|
||||
width: 50px;
|
||||
}
|
||||
li {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.content {
|
||||
background-color: #222222;
|
||||
border-radius: 15px;
|
||||
border: 0.1px solid #BF1723;
|
||||
|
||||
min-width: 250px;
|
||||
}
|
||||
|
||||
.post-header {
|
||||
color: #fff;
|
||||
border-top: 0.5px solid #BF1723;
|
||||
padding-top: 3%;
|
||||
}
|
||||
|
||||
.image .post-img {
|
||||
border-radius: 2%;
|
||||
}
|
||||
|
||||
.post-footer {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/*Форма для добавления*/
|
||||
.formContainer{
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 5px;
|
||||
background-color: #f9f9f9;
|
||||
max-width: 300px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* Обновлённые стили для кнопок управления постом */
|
||||
.post-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.post-actions {
|
||||
margin-left: auto;
|
||||
display: flex;
|
||||
gap: 5px;
|
||||
}
|
||||
|
||||
.post-actions button {
|
||||
font-size: 0.8rem;
|
||||
padding: 0.1rem 0.4rem;
|
||||
}
|
||||
|
||||
/* Стили для изображений */
|
||||
.image-preview {
|
||||
max-width: 100%;
|
||||
max-height: 200px;
|
||||
margin-top: 10px;
|
||||
display: none;
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
.post-img {
|
||||
border-radius: 8px;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
.like-btn {
|
||||
cursor: pointer;
|
||||
transition: color 0.2s;
|
||||
}
|
||||
|
||||
.like-btn.text-danger {
|
||||
color: #dc3545 !important;
|
||||
}
|
||||
@@ -1,73 +0,0 @@
|
||||
body {
|
||||
color: #c5c6c7;
|
||||
background-color: #0b0c10;
|
||||
}
|
||||
|
||||
|
||||
/* Шапка */
|
||||
header .container-fluid {
|
||||
border-bottom: 3px solid #BF1723;
|
||||
border-bottom-right-radius: 25px;
|
||||
border-bottom-left-radius: 25px;
|
||||
}
|
||||
|
||||
.first-part {
|
||||
color:#FCD116;
|
||||
font-size: 1.4em;
|
||||
}
|
||||
|
||||
.last-part {
|
||||
color: #BF1723;
|
||||
font-size: 1.5em;
|
||||
}
|
||||
|
||||
.right-part > nav > ul > li > a {
|
||||
border: 0.5px solid #FFF;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* Блок регистрации */
|
||||
.login-page {
|
||||
background-color: #222222;
|
||||
border-radius: 15%;
|
||||
border: 0.5px solid #BF1723;
|
||||
color: #FFF;
|
||||
}
|
||||
|
||||
.remember-forgot label input {
|
||||
accent-color: #BF1723;
|
||||
}
|
||||
|
||||
.login-page .btn {
|
||||
background-color: #BF1723;
|
||||
border-radius: 10px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.input-box input {
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.input-box input:focus {
|
||||
border-color: #BF1723;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* Ссылки */
|
||||
a {
|
||||
outline: none;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:link{
|
||||
color: #FCD116;
|
||||
}
|
||||
a:visited{
|
||||
color: #FCD116;
|
||||
}
|
||||
a:hover{
|
||||
color: #c5c6c7;
|
||||
}
|
||||
@@ -1,23 +0,0 @@
|
||||
body {
|
||||
color: #c5c6c7;
|
||||
background-color: #141414;
|
||||
}
|
||||
|
||||
img {
|
||||
width: 50px;
|
||||
}
|
||||
li {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.content {
|
||||
background-color: #222222;
|
||||
border-radius: 15px;
|
||||
border: 0.1px solid #BF1723;
|
||||
|
||||
min-width: 250px;
|
||||
}
|
||||
|
||||
@@ -1,54 +0,0 @@
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
color: #c5c6c7;
|
||||
background-color: #141414;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
img {
|
||||
width: 50px;
|
||||
}
|
||||
li {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.profile-card {
|
||||
max-width: 250px;
|
||||
width: 100%;
|
||||
background-color: #222222;
|
||||
border-radius: 25px;
|
||||
}
|
||||
|
||||
.imagep {
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
border-radius: 50%;
|
||||
background-color: #FCD116;
|
||||
}
|
||||
|
||||
.imagep .profile-img {
|
||||
border-radius: 50%;
|
||||
border: 3px solid #FFF;
|
||||
}
|
||||
|
||||
.text-data .name {
|
||||
font-size: 22px;
|
||||
font-weight: 500;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.text-data .about {
|
||||
font-size: 15px;
|
||||
font-weight: 400;
|
||||
color: #fff;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.profile-card .more-info {
|
||||
width: 90%;
|
||||
}
|
||||
@@ -1,73 +0,0 @@
|
||||
body {
|
||||
color: #c5c6c7;
|
||||
background-color: #0b0c10;
|
||||
}
|
||||
|
||||
|
||||
/* Шапка */
|
||||
header .container-fluid {
|
||||
border-bottom: 3px solid #BF1723;
|
||||
border-bottom-right-radius: 25px;
|
||||
border-bottom-left-radius: 25px;
|
||||
}
|
||||
|
||||
.first-part {
|
||||
color:#FCD116;
|
||||
font-size: 1.4em;
|
||||
}
|
||||
|
||||
.last-part {
|
||||
color: #BF1723;
|
||||
font-size: 1.5em;
|
||||
}
|
||||
|
||||
.right-part > nav > ul > li > a {
|
||||
border: 0.5px solid #FFF;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* Блок регистрации */
|
||||
.login-page {
|
||||
background-color: #222222;
|
||||
border-radius: 15%;
|
||||
border: 0.5px solid #BF1723;
|
||||
color: #FFF;
|
||||
}
|
||||
|
||||
.remember-forgot label input {
|
||||
accent-color: #BF1723;
|
||||
}
|
||||
|
||||
.login-page .btn {
|
||||
background-color: #BF1723;
|
||||
border-radius: 10px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.input-box input {
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.input-box input:focus {
|
||||
border-color: #BF1723;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* Ссылки */
|
||||
a {
|
||||
outline: none;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:link{
|
||||
color: #FCD116;
|
||||
}
|
||||
a:visited{
|
||||
color: #FCD116;
|
||||
}
|
||||
a:hover{
|
||||
color: #c5c6c7;
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
const reportWebVitals = onPerfEntry => {
|
||||
if (onPerfEntry && onPerfEntry instanceof Function) {
|
||||
import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => {
|
||||
getCLS(onPerfEntry);
|
||||
getFID(onPerfEntry);
|
||||
getFCP(onPerfEntry);
|
||||
getLCP(onPerfEntry);
|
||||
getTTFB(onPerfEntry);
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
export default reportWebVitals;
|
||||
@@ -1,38 +0,0 @@
|
||||
export class PostService {
|
||||
static STORAGE_KEY = 'posts';
|
||||
|
||||
static getPosts() {
|
||||
const savedPosts = localStorage.getItem(this.STORAGE_KEY);
|
||||
return savedPosts ? JSON.parse(savedPosts) : null;
|
||||
}
|
||||
|
||||
static savePosts(posts) {
|
||||
localStorage.setItem(this.STORAGE_KEY, JSON.stringify(posts));
|
||||
}
|
||||
|
||||
static getInitialPosts() {
|
||||
const now = Date.now();
|
||||
return [
|
||||
{
|
||||
id: 1,
|
||||
text: '',
|
||||
image: 'source/meme1.jpg',
|
||||
group: 'Какая-то группа 1',
|
||||
likes: 8,
|
||||
comments: 2,
|
||||
shares: 1,
|
||||
createdAt: new Date(now - 86400000 * 2).toISOString()
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
text: '',
|
||||
image: 'src/assets/meme2.jpg',
|
||||
group: 'Какая-то группа 2',
|
||||
likes: 785,
|
||||
comments: 102,
|
||||
shares: 14,
|
||||
createdAt: new Date(now - 86400000 * 2).toISOString()
|
||||
}
|
||||
];
|
||||
}
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
// jest-dom adds custom jest matchers for asserting on DOM nodes.
|
||||
// allows you to do things like:
|
||||
// expect(element).toHaveTextContent(/react/i)
|
||||
// learn more: https://github.com/testing-library/jest-dom
|
||||
import '@testing-library/jest-dom';
|
||||