diff --git a/WebServer/README.md b/WebServer/README.md index d653a3c..8280bd7 100644 --- a/WebServer/README.md +++ b/WebServer/README.md @@ -1,4 +1,6 @@ # Instrucciones https://www.blog.duomly.com/how-to-crate-simple-web-page-using-bootstrap-5/ +# Para la parte admin +https://www.blog.duomly.com/how-to-build-bootstrap-admin-template-tutorial/ diff --git a/WebServer/nginx/admin/index.html b/WebServer/nginx/admin/index.html new file mode 100644 index 0000000..0c753f4 --- /dev/null +++ b/WebServer/nginx/admin/index.html @@ -0,0 +1,280 @@ + + + + + Admin Panel UI + + + + + + + + + + + + + +
+ +
+ +
+ +
+
+
+
+
+
+
Recently Published Posts
+
    +
  • +
    +
    + Post One Photo +
    +
    +
    +
    Lorem ipsum dolor sit amet...
    +

    + This is a wider card with supporting text below as a + natural lead-in to additional content. +

    +

    + Added 3 days ago +

    +
    +
    +
    +
  • +
  • +
    +
    + Post One Photo +
    +
    +
    +
    Lorem ipsum dolor sit amet...
    +

    + This is a wider card with supporting text below as a + natural lead-in to additional content. +

    +

    + Added 3 days ago +

    +
    +
    +
    +
  • +
  • +
    +
    + Post One Photo +
    +
    +
    +
    Lorem ipsum dolor sit amet...
    +

    + This is a wider card with supporting text below as a + natural lead-in to additional content. +

    +

    + Added 3 days ago +

    +
    +
    +
    +
  • +
+
+
+
+
+
+ + diff --git a/WebServer/nginx/admin/styles.css b/WebServer/nginx/admin/styles.css new file mode 100644 index 0000000..184f7b3 --- /dev/null +++ b/WebServer/nginx/admin/styles.css @@ -0,0 +1,48 @@ +body { + background: #f6f6f6; + height: 100vh; +} +nav { + background-color: white; +} +.search-form { + width: 50%; +} + +#sidebar { + position: fixed; + top: 0; + bottom: 0; + left: 0; + z-index: 9999; + box-shadow: -1px 0 0 rgba(0, 0, 0, 0.1); + max-width: 10vw; +} + +#sidebar .nav-item { + text-align: center; + padding: 25px 0; +} + +#sidebar .nav-item a { + color: rgba(0, 0, 0, 0.2); +} + +#sidebar .nav-item a.active { + color: #0d6efd; +} + +.vertical-nav { + margin-top: 20vh; +} + +.logo { + max-height: 30px; + margin: 15px 25px; +} + +a.navbar-brand { + text-align: center; + width: 100%; + display: block; +}