Skip to content
Snippets Groups Projects
Commit 7a2112a1 authored by Raghav's avatar Raghav
Browse files

Tried to add css for form but failed

parent 199ff35c
No related branches found
No related tags found
No related merge requests found
html,
body {
height: 100%;
}
.form-signin {
max-width: 330px;
padding: 1rem;
}
.form-signin .form-floating:focus-within {
z-index: 2;
}
.form-signin input[type="email"] {
margin-bottom: -1px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.form-signin input[type="password"] {
margin-bottom: 10px;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
...@@ -12,7 +12,7 @@ include 'libs/load.php'; ...@@ -12,7 +12,7 @@ include 'libs/load.php';
<meta name="description" content=""> <meta name="description" content="">
<meta name="author" content="Mark Otto, Jacob Thornton, and Bootstrap contributors"> <meta name="author" content="Mark Otto, Jacob Thornton, and Bootstrap contributors">
<meta name="generator" content="Hugo 0.122.0"> <meta name="generator" content="Hugo 0.122.0">
<title>Album example · Bootstrap v5.3</title> <title>Login Page</title>
<link rel="canonical" href="https://getbootstrap.com/docs/5.3/examples/album/"> <link rel="canonical" href="https://getbootstrap.com/docs/5.3/examples/album/">
...@@ -20,7 +20,8 @@ include 'libs/load.php'; ...@@ -20,7 +20,8 @@ include 'libs/load.php';
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@docsearch/css@3"> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@docsearch/css@3">
<link href="/photogram-project-php/assets/dist/css/bootstrap.min.css" rel="stylesheet"> <link href="/photogram-project-php/assets/dist/css/bootstrap.min.css" rel="stylesheet">
<style> <style>
.bd-placeholder-img { .bd-placeholder-img {
...@@ -99,9 +100,38 @@ include 'libs/load.php'; ...@@ -99,9 +100,38 @@ include 'libs/load.php';
.bd-mode-toggle .dropdown-menu .active .bi { .bd-mode-toggle .dropdown-menu .active .bi {
display: block !important; display: block !important;
} }
/* login css code */
html,
body {
height: 100%;
}
.form-signin {
max-width: 330px;
padding: 1rem;
}
.form-signin .form-floating:focus-within {
z-index: 2;
}
.form-signin input[type="email"] {
margin-bottom: -1px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.form-signin input[type="password"] {
margin-bottom: 10px;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
</style> </style>
<link href="/photogram-project-php/assets/dist/css/login.css" rel="stylesheet">
</head> </head>
<body> <body>
<!-- To change dark to light mode --> <!-- To change dark to light mode -->
...@@ -183,6 +213,7 @@ include 'libs/load.php'; ...@@ -183,6 +213,7 @@ include 'libs/load.php';
<main> <main>
<!-- login content added -->
<?load_template('login-content');?> <?load_template('login-content');?>
</main> </main>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment