62 |
63 |

Hello

64 | 65 |
-------------------------------------------------------------------------------- /site.css: -------------------------------------------------------------------------------- 1 | body 2 | 3 | { 4 | color: #464646; 5 | font-weight: bold; 6 | font-family: 'Montserrat', sans-serif; 7 | font-size: 16px; 8 | 9 | } 10 | 11 | .parent-container 12 | { 13 | width: 50% 14 | height: 50%; 15 | /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#8386db+1,5057d8+27,383de0+51,383de0+51,383ee2+70,161ae5+100 */ 16 | /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#8386db+1,5057d8+44,383de0+65,383ee2+81,383ee2+81,161ae5+100 */ 17 | background: url(imagyyy.jpg); /* Old browsers */ 18 | 19 | opacity: 0.9; 20 | } 21 | 22 | .loginholder 23 | { 24 | padding: 20px 5px 25px 5px; 25 | background-color: #fff; 26 | display: inline-block; 27 | } 28 | 29 | .inputbox 30 | { 31 | border: 1px solid #464646; 32 | padding: 5px; 33 | width: 300px; 34 | color: #464646; 35 | background-color: #fff; 36 | border-radius: 5px; 37 | transition: all 0.5s; 38 | font-weight: normal; 39 | } 40 | 41 | .inputbox:focus 42 | { 43 | border: 1px solid blue; 44 | padding: 5px; 45 | background-color: white; 46 | color: blue; 47 | font-weight: bold; 48 | } 49 | 50 | h2 51 | { 52 | padding: 0px; 53 | margin: 0px; 54 | } 55 | 56 | .btn-normal 57 | { 58 | width: 145px; 59 | padding: 5px 35px; 60 | color: #fff; 61 | transition: all 0.5s; 62 | border-radius: 5px; 63 | border: 2px solid blue; 64 | background-color: blue; 65 | font-weight: bold; 66 | cursor: pointer; 67 | } 68 | 69 | .btn-normal:hover, .btn-normal:focus 70 | { 71 | color: blue; 72 | border: 2px solid blue; 73 | background-color: white; 74 | text-decoration: none; 75 | } 76 | 77 | .forgetpassword 78 | { 79 | font-weight: bold; 80 | color: blue; 81 | } 82 | 83 | .forgetpassword:hover, .forgetpassword:focus 84 | { 85 | color: black; 86 | } 87 | 88 | .btn-normal-logo 89 | { 90 | background-color: white; 91 | border: 1px solid #464646; 92 | color: #464646; 93 | font-weight: bold; 94 | border-radius: 5px; 95 | } 96 | 97 | .btn-normal-logo:focus, .btn-normal-logo:hover 98 | { 99 | border: 1px solid blue; 100 | color: blue; 101 | } -------------------------------------------------------------------------------- /admin/register.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 |
7 |
8 |

Admin Register

9 |

10 |
11 |
12 | 13 | 14 |
15 |
16 | 17 | 18 | We'll never share your email with anyone else. 19 |
20 |
21 | 22 | 23 |
24 |
25 | 26 | 27 |
28 | 29 | 30 |
31 |
32 |
33 |
34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 68 | -------------------------------------------------------------------------------- /admin/css/dashboard.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-size: .875rem; 3 | } 4 | 5 | .feather { 6 | width: 16px; 7 | height: 16px; 8 | vertical-align: text-bottom; 9 | } 10 | 11 | /* 12 | * Sidebar 13 | */ 14 | 15 | .sidebar { 16 | position: fixed; 17 | top: 0; 18 | bottom: 0; 19 | left: 0; 20 | z-index: 100; /* Behind the navbar */ 21 | padding: 48px 0 0; /* Height of navbar */ 22 | box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1); 23 | } 24 | 25 | .sidebar-sticky { 26 | position: relative; 27 | top: 0; 28 | height: calc(100vh - 48px); 29 | padding-top: .5rem; 30 | overflow-x: hidden; 31 | overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */ 32 | } 33 | 34 | @supports ((position: -webkit-sticky) or (position: sticky)) { 35 | .sidebar-sticky { 36 | position: -webkit-sticky; 37 | position: sticky; 38 | } 39 | } 40 | 41 | .sidebar .nav-link { 42 | font-weight: 500; 43 | color: #333; 44 | } 45 | 46 | .sidebar .nav-link .feather { 47 | margin-right: 4px; 48 | color: #999; 49 | } 50 | 51 | .sidebar .nav-link.active { 52 | color: #007bff; 53 | } 54 | 55 | .sidebar .nav-link:hover .feather, 56 | .sidebar .nav-link.active .feather { 57 | color: inherit; 58 | } 59 | 60 | .sidebar-heading { 61 | font-size: .75rem; 62 | text-transform: uppercase; 63 | } 64 | 65 | /* 66 | * Content 67 | */ 68 | 69 | [role="main"] { 70 | padding-top: 133px; /* Space for fixed navbar */ 71 | } 72 | 73 | @media (min-width: 768px) { 74 | [role="main"] { 75 | padding-top: 48px; /* Space for fixed navbar */ 76 | } 77 | } 78 | 79 | /* 80 | * Navbar 81 | */ 82 | 83 | .navbar-brand { 84 | padding-top: .75rem; 85 | padding-bottom: .75rem; 86 | font-size: 1rem; 87 | background-color: rgba(0, 0, 0, .25); 88 | box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25); 89 | } 90 | 91 | .navbar .form-control { 92 | padding: .75rem 1rem; 93 | border-width: 0; 94 | border-radius: 0; 95 | } 96 | 97 | .form-control-dark { 98 | color: #fff; 99 | background-color: rgba(255, 255, 255, .1); 100 | border-color: rgba(255, 255, 255, .1); 101 | } 102 | 103 | .form-control-dark:focus { 104 | border-color: transparent; 105 | box-shadow: 0 0 0 3px rgba(255, 255, 255, .25); 106 | } 107 | .resize{ 108 | height: 100px; 109 | } -------------------------------------------------------------------------------- /css/slicknav.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * SlickNav Responsive Mobile Menu v1.0.10 3 | * (c) 2016 Josh Cope 4 | * licensed under MIT 5 | */.slicknav_btn,.slicknav_nav .slicknav_item{cursor:pointer}.slicknav_menu,.slicknav_menu *{box-sizing:border-box}.slicknav_btn{position:relative;display:block;vertical-align:middle;float:right;padding:.438em .625em;line-height:1.125em}.slicknav_btn .slicknav_icon-bar+.slicknav_icon-bar{margin-top:.188em}.slicknav_menu .slicknav_menutxt{display:block;line-height:1.188em;float:left;color:#fff;font-weight:700;text-shadow:0 1px 3px #000}.slicknav_menu .slicknav_icon{float:left;width:1.125em;height:.875em;margin:.188em 0 0 .438em}.slicknav_menu .slicknav_icon:before{background:0 0;width:1.125em;height:.875em;display:block;content:"";position:absolute}.slicknav_menu .slicknav_no-text{margin:0}.slicknav_menu .slicknav_icon-bar{display:block;width:1.125em;height:.125em;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,.25);-moz-box-shadow:0 1px 0 rgba(0,0,0,.25);box-shadow:0 1px 0 rgba(0,0,0,.25)}.slicknav_menu:after,.slicknav_menu:before{content:" ";display:table}.slicknav_menu:after{clear:both}.slicknav_nav li,.slicknav_nav ul{display:block}.slicknav_nav .slicknav_arrow{font-size:.8em;margin:0 0 0 .4em}.slicknav_nav .slicknav_item a{display:inline}.slicknav_nav .slicknav_row,.slicknav_nav a{display:block}.slicknav_nav .slicknav_parent-link a{display:inline}.slicknav_menu{*zoom:1;font-size:16px;background:#4c4c4c;padding:5px}.slicknav_nav,.slicknav_nav ul{list-style:none;overflow:hidden;padding:0}.slicknav_menu .slicknav_icon-bar{background-color:#fff}.slicknav_btn{margin:5px 5px 6px;text-decoration:none;text-shadow:0 1px 1px rgba(255,255,255,.75);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;background-color:#222}.slicknav_nav{clear:both;color:#fff;margin:0;font-size:.875em}.slicknav_nav ul{margin:0 0 0 20px}.slicknav_nav .slicknav_row,.slicknav_nav a{padding:5px 10px;margin:2px 5px}.slicknav_nav .slicknav_row:hover{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;background:#ccc;color:#fff}.slicknav_nav a{text-decoration:none;color:#fff}.slicknav_nav a:hover{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;background:#ccc;color:#222}.slicknav_nav .slicknav_txtnode{margin-left:15px}.slicknav_nav .slicknav_item a,.slicknav_nav .slicknav_parent-link a{padding:0;margin:0}.slicknav_brand{float:left;color:#fff;font-size:18px;line-height:30px;padding:7px 12px;height:44px} -------------------------------------------------------------------------------- /allmovie_fetch.php: -------------------------------------------------------------------------------- 1 | prepare($query); 29 | $statement->execute(); 30 | $result = $statement->fetchAll(); 31 | $total_row = $statement->rowCount(); 32 | $output = ''; 33 | if($total_row > 0) 34 | { 35 | foreach($result as $row) 36 | { 37 | if($row['action']== "running"){ 38 | $output .= ' 39 |
40 |
41 | 42 |

'. $row['movie_name'] .'

43 | 44 | Directer : '. $row['directer'] .'
45 | Categroy : '. $row['categroy'] .'
46 | Language : '. $row['language'] .'

47 | 48 |
49 | Book Now 50 |
51 | '; 52 | 53 | } 54 | 55 | if($row['action']== "upcoming"){ 56 | $output .= ' 57 |
58 |
59 | 60 |

'. $row['movie_name'] .'

61 | 62 | Directer : '. $row['directer'] .'
63 | Categroy : '. $row['categroy'] .'
64 | Language : '. $row['language'] .'

65 | 66 |
67 | Upcoming 68 |
69 | '; 70 | } 71 | } 72 | } 73 | else 74 | { 75 | $output = '

No Data Found

'; 76 | } 77 | echo $output; 78 | } 79 | 80 | ?> -------------------------------------------------------------------------------- /js/jquery.nice-select.min.js: -------------------------------------------------------------------------------- 1 | /* jQuery Nice Select - v1.0 2 | https://github.com/hernansartorio/jquery-nice-select 3 | Made by Hernán Sartorio */ 4 | !function(e){e.fn.niceSelect=function(t){function s(t){t.after(e("
").addClass("nice-select").addClass(t.attr("class")||"").addClass(t.attr("disabled")?"disabled":"").attr("tabindex",t.attr("disabled")?null:"0").html(''));var s=t.next(),n=t.find("option"),i=t.find("option:selected");s.find(".current").html(i.data("display")||i.text()),n.each(function(t){var n=e(this),i=n.data("display");s.find("ul").append(e("
  • ").attr("data-value",n.val()).attr("data-display",i||null).addClass("option"+(n.is(":selected")?" selected":"")+(n.is(":disabled")?" disabled":"")).html(n.text()))})}if("string"==typeof t)return"update"==t?this.each(function(){var t=e(this),n=e(this).next(".nice-select"),i=n.hasClass("open");n.length&&(n.remove(),s(t),i&&t.next().trigger("click"))}):"destroy"==t?(this.each(function(){var t=e(this),s=e(this).next(".nice-select");s.length&&(s.remove(),t.css("display",""))}),0==e(".nice-select").length&&e(document).off(".nice_select")):console.log('Method "'+t+'" does not exist.'),this;this.hide(),this.each(function(){var t=e(this);t.next().hasClass("nice-select")||s(t)}),e(document).off(".nice_select"),e(document).on("click.nice_select",".nice-select",function(t){var s=e(this);e(".nice-select").not(s).removeClass("open"),s.toggleClass("open"),s.hasClass("open")?(s.find(".option"),s.find(".focus").removeClass("focus"),s.find(".selected").addClass("focus")):s.focus()}),e(document).on("click.nice_select",function(t){0===e(t.target).closest(".nice-select").length&&e(".nice-select").removeClass("open").find(".option")}),e(document).on("click.nice_select",".nice-select .option:not(.disabled)",function(t){var s=e(this),n=s.closest(".nice-select");n.find(".selected").removeClass("selected"),s.addClass("selected");var i=s.data("display")||s.text();n.find(".current").text(i),n.prev("select").val(s.data("value")).trigger("change")}),e(document).on("keydown.nice_select",".nice-select",function(t){var s=e(this),n=e(s.find(".focus")||s.find(".list .option.selected"));if(32==t.keyCode||13==t.keyCode)return s.hasClass("open")?n.trigger("click"):s.trigger("click"),!1;if(40==t.keyCode){if(s.hasClass("open")){var i=n.nextAll(".option:not(.disabled)").first();i.length>0&&(s.find(".focus").removeClass("focus"),i.addClass("focus"))}else s.trigger("click");return!1}if(38==t.keyCode){if(s.hasClass("open")){var l=n.prevAll(".option:not(.disabled)").first();l.length>0&&(s.find(".focus").removeClass("focus"),l.addClass("focus"))}else s.trigger("click");return!1}if(27==t.keyCode)s.hasClass("open")&&s.trigger("click");else if(9==t.keyCode&&s.hasClass("open"))return!1});var n=document.createElement("a").style;return n.cssText="pointer-events:auto","auto"!==n.pointerEvents&&e("html").addClass("no-csspointerevents"),this}}(jQuery); -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- 1 | 2 | 67 | 68 | -------------------------------------------------------------------------------- /login_form.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Login Page 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 |
    12 |
    13 | 14 | 15 | 16 | 62 | 63 |
    17 |
    18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 30 | 31 | 32 | 33 | 34 | 35 | 37 | 38 | 39 | 40 | 44 | 45 | 46 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 |
    User Id:
    29 |

    Password:
    36 |


    41 | 42 | 43 |

    47 | Forget your Password ?
    Resiter now

    59 | 60 |
    61 |
    64 |
    65 |
    66 | 105 | 106 | -------------------------------------------------------------------------------- /contact.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | Contact Page 16 | 17 | 18 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 38 | 39 | 40 |
    41 |
    42 |
    43 |
    44 |
    45 |
    46 | Information 47 |

    Contact Us

    48 |

    As you might expect of a company that began as a high-end interiors contractor, we pay 49 | strict attention.

    50 |
    51 |
      52 |
    • 53 |

      Surendranagar

      54 |

      Inox Cinema, Near Upashna Circle, Surendranagar.
      +91 187-654-3210 55 |
      +91 258-963-1470

      56 |
    • 57 | 58 |
    59 |
    60 |
    61 | 62 |
    63 |
    64 |
    65 | 66 | 67 | 68 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | -------------------------------------------------------------------------------- /css/register.css: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap'); 2 | *{ 3 | margin: 0; 4 | padding: 0; 5 | box-sizing: border-box; 6 | font-family: 'Poppins',sans-serif; 7 | } 8 | body{ 9 | height: 100vh; 10 | display: flex; 11 | justify-content: center; 12 | align-items: center; 13 | padding: 10px; 14 | } 15 | .container{ 16 | box-sizing: border-box; 17 | font-family: 'Poppins',sans-serif; 18 | max-width: 700px; 19 | width: 100%; 20 | background-color: #fff; 21 | padding: 25px 30px; 22 | border-radius: 5px; 23 | box-shadow: 0 5px 10px rgba(0,0,0,0.15); 24 | } 25 | .container .title{ 26 | font-size: 25px; 27 | font-weight: 500; 28 | position: relative; 29 | } 30 | .container .title::before{ 31 | content: ""; 32 | position: absolute; 33 | left: 0; 34 | bottom: 0; 35 | height: 3px; 36 | width: 30px; 37 | border-radius: 5px; 38 | background: linear-gradient(135deg, #71b7e6, #9b59b6); 39 | } 40 | .content form .user-details{ 41 | display: flex; 42 | flex-wrap: wrap; 43 | justify-content: space-between; 44 | margin: 20px 0 12px 0; 45 | } 46 | form .user-details .input-box{ 47 | margin-bottom: 15px; 48 | width: calc(100% / 2 - 20px); 49 | } 50 | form .input-box span.details{ 51 | display: block; 52 | font-weight: 500; 53 | margin-bottom: 5px; 54 | } 55 | .user-details .input-box input{ 56 | height: 45px; 57 | width: 100%; 58 | outline: none; 59 | font-size: 16px; 60 | border-radius: 5px; 61 | padding-left: 15px; 62 | border: 1px solid #ccc; 63 | border-bottom-width: 2px; 64 | transition: all 0.3s ease; 65 | } 66 | .user-details .input-box input:focus, 67 | .user-details .input-box input:valid{ 68 | border-color: #9b59b6; 69 | } 70 | form .gender-details .gender-title{ 71 | font-size: 20px; 72 | font-weight: 500; 73 | } 74 | form .category{ 75 | display: flex; 76 | width: 80%; 77 | margin: 14px 0 ; 78 | justify-content: space-between; 79 | } 80 | form .category label{ 81 | display: flex; 82 | align-items: center; 83 | cursor: pointer; 84 | } 85 | form .category label .dot{ 86 | height: 18px; 87 | width: 18px; 88 | border-radius: 50%; 89 | margin-right: 10px; 90 | background: #d9d9d9; 91 | border: 5px solid transparent; 92 | transition: all 0.3s ease; 93 | } 94 | #dot-1:checked ~ .category label .one, 95 | #dot-2:checked ~ .category label .two, 96 | #dot-3:checked ~ .category label .three{ 97 | background: #9b59b6; 98 | border-color: #d9d9d9; 99 | } 100 | form input[type="radio"]{ 101 | display: none; 102 | } 103 | form .button{ 104 | height: 45px; 105 | margin: 35px 0 106 | } 107 | form .button input{ 108 | height: 100%; 109 | width: 100%; 110 | border-radius: 5px; 111 | border: none; 112 | color: #fff; 113 | font-size: 18px; 114 | font-weight: 500; 115 | letter-spacing: 1px; 116 | cursor: pointer; 117 | transition: all 0.3s ease; 118 | background: linear-gradient(135deg, #71b7e6, #9b59b6); 119 | } 120 | form .button input:hover{ 121 | /* transform: scale(0.99); */ 122 | background: linear-gradient(-135deg, #71b7e6, #9b59b6); 123 | } 124 | @media(max-width: 584px){ 125 | .container{ 126 | max-width: 100%; 127 | } 128 | form .user-details .input-box{ 129 | margin-bottom: 15px; 130 | width: 100%; 131 | } 132 | form .category{ 133 | width: 100%; 134 | } 135 | .content form .user-details{ 136 | max-height: 300px; 137 | overflow-y: scroll; 138 | } 139 | .user-details::-webkit-scrollbar{ 140 | width: 5px; 141 | } 142 | } 143 | @media(max-width: 459px){ 144 | .container .content .category{ 145 | flex-direction: column; 146 | } 147 | } 148 | -------------------------------------------------------------------------------- /forget_password.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Login Page 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 |
    12 |
    13 | 14 | 15 | 16 | 65 | 66 |
    17 |
    18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 30 | 31 | 32 | 33 | 34 | 35 | 37 | 38 | 39 | 40 | 41 | 42 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 52 | 53 | 54 | 58 | 59 | 60 | 61 |
    Email Id:
    29 |

    Old Password Id:
    36 |

    New Password:
    43 |

    Conform Password
    51 |


    55 | 56 | 57 |
    62 | 63 |
    64 |
    67 |
    68 |
    69 | 130 | 131 | -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
    5 |
    6 |
    7 | 8 | 9 |
    10 |
    11 |
    12 | 16 | 17 |
    18 | 19 |
    20 | 21 |
    22 | 23 | 24 | 25 |
    26 |
    27 |
    28 |
    29 |
    30 | 31 |
    32 | 39 |
    40 |
    41 | 57 | 58 |
    59 |
    60 | 63 |
    64 |
    65 | 69 | 70 |
    71 |
    72 | 75 | 76 |
    77 |
    78 |
    79 |
    80 |
    81 |
    82 | 85 |
    86 |
    87 | 96 |
    97 | 98 |
    99 |
    100 |
    101 |
    102 | 103 | -------------------------------------------------------------------------------- /css/nice-select.css: -------------------------------------------------------------------------------- 1 | .nice-select { 2 | -webkit-tap-highlight-color: transparent; 3 | background-color: #fff; 4 | border-radius: 5px; 5 | border: solid 1px #e8e8e8; 6 | box-sizing: border-box; 7 | clear: both; 8 | cursor: pointer; 9 | display: block; 10 | float: left; 11 | font-family: inherit; 12 | font-size: 14px; 13 | font-weight: normal; 14 | height: 42px; 15 | line-height: 40px; 16 | outline: none; 17 | padding-left: 18px; 18 | padding-right: 30px; 19 | position: relative; 20 | text-align: left !important; 21 | -webkit-transition: all 0.2s ease-in-out; 22 | transition: all 0.2s ease-in-out; 23 | -webkit-user-select: none; 24 | -moz-user-select: none; 25 | -ms-user-select: none; 26 | user-select: none; 27 | white-space: nowrap; 28 | width: auto; } 29 | .nice-select:hover { 30 | border-color: #dbdbdb; } 31 | .nice-select:active, .nice-select.open, .nice-select:focus { 32 | border-color: #999; } 33 | .nice-select:after { 34 | border-bottom: 2px solid #999; 35 | border-right: 2px solid #999; 36 | content: ''; 37 | display: block; 38 | height: 5px; 39 | margin-top: -4px; 40 | pointer-events: none; 41 | position: absolute; 42 | right: 12px; 43 | top: 50%; 44 | -webkit-transform-origin: 66% 66%; 45 | -ms-transform-origin: 66% 66%; 46 | transform-origin: 66% 66%; 47 | -webkit-transform: rotate(45deg); 48 | -ms-transform: rotate(45deg); 49 | transform: rotate(45deg); 50 | -webkit-transition: all 0.15s ease-in-out; 51 | transition: all 0.15s ease-in-out; 52 | width: 5px; } 53 | .nice-select.open:after { 54 | -webkit-transform: rotate(-135deg); 55 | -ms-transform: rotate(-135deg); 56 | transform: rotate(-135deg); } 57 | .nice-select.open .list { 58 | opacity: 1; 59 | pointer-events: auto; 60 | -webkit-transform: scale(1) translateY(0); 61 | -ms-transform: scale(1) translateY(0); 62 | transform: scale(1) translateY(0); } 63 | .nice-select.disabled { 64 | border-color: #ededed; 65 | color: #999; 66 | pointer-events: none; } 67 | .nice-select.disabled:after { 68 | border-color: #cccccc; } 69 | .nice-select.wide { 70 | width: 100%; } 71 | .nice-select.wide .list { 72 | left: 0 !important; 73 | right: 0 !important; } 74 | .nice-select.right { 75 | float: right; } 76 | .nice-select.right .list { 77 | left: auto; 78 | right: 0; } 79 | .nice-select.small { 80 | font-size: 12px; 81 | height: 36px; 82 | line-height: 34px; } 83 | .nice-select.small:after { 84 | height: 4px; 85 | width: 4px; } 86 | .nice-select.small .option { 87 | line-height: 34px; 88 | min-height: 34px; } 89 | .nice-select .list { 90 | background-color: #fff; 91 | border-radius: 5px; 92 | box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11); 93 | box-sizing: border-box; 94 | margin-top: 4px; 95 | opacity: 0; 96 | overflow: hidden; 97 | padding: 0; 98 | pointer-events: none; 99 | position: absolute; 100 | top: 100%; 101 | left: 0; 102 | -webkit-transform-origin: 50% 0; 103 | -ms-transform-origin: 50% 0; 104 | transform-origin: 50% 0; 105 | -webkit-transform: scale(0.75) translateY(-21px); 106 | -ms-transform: scale(0.75) translateY(-21px); 107 | transform: scale(0.75) translateY(-21px); 108 | -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out; 109 | transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out; 110 | z-index: 9; } 111 | .nice-select .list:hover .option:not(:hover) { 112 | background-color: transparent !important; } 113 | .nice-select .option { 114 | cursor: pointer; 115 | font-weight: 400; 116 | line-height: 40px; 117 | list-style: none; 118 | min-height: 40px; 119 | outline: none; 120 | padding-left: 18px; 121 | padding-right: 29px; 122 | text-align: left; 123 | -webkit-transition: all 0.2s; 124 | transition: all 0.2s; } 125 | .nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus { 126 | background-color: #f6f6f6; } 127 | .nice-select .option.selected { 128 | font-weight: bold; } 129 | .nice-select .option.disabled { 130 | background-color: transparent; 131 | color: #999; 132 | cursor: default; } 133 | 134 | .no-csspointerevents .nice-select .list { 135 | display: none; } 136 | 137 | .no-csspointerevents .nice-select.open .list { 138 | display: block; } 139 | -------------------------------------------------------------------------------- /ticket_show.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | Booking Summary 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 |
    23 | 24 |
    25 |
    26 | 27 |

    BOOKING SUMMARY

    28 |
    29 |
    30 |
    31 |
    32 |
    33 |
    34 |
    35 |
    Near Upansna Circle, Surendranagar
    36 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 |
    +91 846050 2720Custemer Id:
    Date:
    52 |
    53 | 54 |

    Movie Name:

    55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 |
    NameCity
    EmailPhone
    Payment DatePayment Amount
    RS. /-
    76 | 77 |
    78 | 79 |

    BOOKING DETAILS:

    80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 |
    TheaterDateTime
    No.
    SeatsTotal Seats
    95 | 96 |
    97 |
    98 |
    99 |
    100 |
    101 | 102 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | Movie Ticket Booking System 15 | 16 | 17 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 41 | 42 |
    43 | 44 |
    45 | 46 |
    47 |

    Running Movies

    48 |
    49 | 0) { 54 | while($row = mysqli_fetch_array($result)) { 55 | if($row['action']== "running"){ 56 | ?> 57 | 58 |
    59 |
    60 | alt="" class="image-resize2" style="width: 100%;"> 61 |
    62 |
    63 |
    64 |
    65 | Book Now 66 |
    67 |
    68 | 69 | 76 | 77 | 82 |
    83 |
    84 | 85 |
    86 |

    Upcoming Movies

    87 |
    88 | 0) { 93 | while($row = mysqli_fetch_array($result)) { 94 | if($row['action']== "upcoming"){ 95 | ?> 96 |
    97 |
    98 | 99 |
    100 | Card image cap 101 | 102 |
    103 |
    104 |

    Director:

    105 |
    106 |
    107 |
    108 |
    109 | 114 | 115 |
    116 |
    117 | 118 | 119 | 120 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | -------------------------------------------------------------------------------- /movie_details.php: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | <?php echo $row['movie_name'];?> Movie Deatis 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 39 | 40 |
    41 |
    42 | 0) { 49 | while($row = mysqli_fetch_array($result)) { 50 | $id = $row['id']; 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 | 88 | 89 | 90 | 91 | 92 | 93 |
    Movie Deatils
    Movie Name
    Release Date
    Directer Name
    Category
    Language
    TailerVeiw Tailer
    94 | 95 | 118 | 121 |
    122 | 123 |
    124 |
    125 |

    Description

    126 |

    127 | Jeff Lang (Tobey Maguire), an OBGYN, and his wife Nealy (Elizabeth Banks), who owns a small shop, live in Seattle with their two-year-old son named Miles. Considering a second child, they decide to enlarge their small home and lay expensive new grass in their backyard. Worms in the grass attract raccoons, who destroy the grass, and Jeff goes to great lengths to get rid of the raccoons, mixing poison with a can of tuna. Their neighbor Lila (Laura Linney) tells Jeff that her cat Matthew is missing, and Jeff does not yet realize he may be responsible. 128 |

    129 |
    130 | 134 |
    135 | 136 |
    137 | 138 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | -------------------------------------------------------------------------------- /allmovie.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | All movie page 18 | 19 | 20 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 43 | 44 |
    45 |
    46 | 47 |
    48 | 49 |
    50 |

    categroy

    51 | prepare($query); 57 | $statement->execute(); 58 | $result = $statement->fetchAll(); 59 | foreach($result as $row) 60 | { 61 | ?> 62 |
    63 | 64 |
    65 | 69 |
    70 | 71 |
    72 |

    language

    73 | prepare($query); 78 | $statement->execute(); 79 | $result = $statement->fetchAll(); 80 | foreach($result as $row) 81 | { 82 | ?> 83 |
    84 | 85 |
    86 | 89 |
    90 |
    91 | 92 |
    93 |
    94 |
    95 | 96 |
    97 |
    98 |
    99 | 100 |
    101 | 105 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 173 | 174 | 175 | 176 | 177 | -------------------------------------------------------------------------------- /register_form.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Responsive Registration Form | CodingLab 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 |
    16 |
    17 |
    Registration
    18 |
    19 |
    20 |
    21 |
    22 | UserName 23 | 24 |

    25 |
    26 |
    27 | Email 28 | 29 |

    30 |
    31 |
    32 | Phone Number 33 | 34 |

    35 |
    36 |
    37 | City 38 | 39 |

    40 |
    41 |
    42 | Password 43 | 44 |

    45 |
    46 |
    47 | Confirm Password 48 | 49 |

    50 |
    51 |
    52 | Image uploaded (Option) 53 | 54 |
    55 |
    56 |

    57 |
    58 |
    59 | 60 |
    61 |
    62 |
    63 |
    64 | 202 | 203 | 204 | -------------------------------------------------------------------------------- /feedback.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | Feeback Page 14 | 15 | 16 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 39 |
    40 |
    41 |
    42 |
    43 |
    44 |
    45 | 46 |

    Fill the form.
    It's easy.

    47 |
    48 | 49 |
    50 |
    51 | 52 |
    53 |
    54 | 55 |
    56 |
    57 |
    58 |
    59 |
    60 |
    61 | 62 |
    63 |
    64 | 65 |
    66 |
    67 |
    68 |
    69 | 72 |
    73 |
    74 | 75 |
    76 |
    77 | 85 | 88 |
    89 |
    90 | 91 |
    92 |
    93 | 95 |
    96 | 97 |
    98 |
    99 |

    Let's talk about everything.

    100 |

    Do Let Us Carnow Your Thoughts and Suggestions on How We Can Survey You Better. Give us feedback on how you feel about our service.

    101 | 102 |
    103 |
    104 |
    105 |
    106 |
    107 |
    108 | 109 | 110 | 111 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 175 | 176 | -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- 1 | /* --------------------------------------------------- 2 | Template Name: Male Fashion 3 | Description: Male Fashion - ecommerce teplate 4 | Author: Colorib 5 | Author URI: https://www.colorib.com/ 6 | Version: 1.0 7 | Created: Colorib 8 | --------------------------------------------------------- */ 9 | 10 | 'use strict'; 11 | 12 | (function ($) { 13 | 14 | /*------------------ 15 | Preloader 16 | --------------------*/ 17 | $(window).on('load', function () { 18 | $(".loader").fadeOut(); 19 | $("#preloder").delay(200).fadeOut("slow"); 20 | 21 | /*------------------ 22 | Gallery filter 23 | --------------------*/ 24 | $('.filter__controls li').on('click', function () { 25 | $('.filter__controls li').removeClass('active'); 26 | $(this).addClass('active'); 27 | }); 28 | if ($('.product__filter').length > 0) { 29 | var containerEl = document.querySelector('.product__filter'); 30 | var mixer = mixitup(containerEl); 31 | } 32 | }); 33 | 34 | /*------------------ 35 | Background Set 36 | --------------------*/ 37 | $('.set-bg').each(function () { 38 | var bg = $(this).data('setbg'); 39 | $(this).css('background-image', 'url(' + bg + ')'); 40 | }); 41 | 42 | //Search Switch 43 | $('.search-switch').on('click', function () { 44 | $('.search-model').fadeIn(400); 45 | }); 46 | 47 | $('.search-close-switch').on('click', function () { 48 | $('.search-model').fadeOut(400, function () { 49 | $('#search-input').val(''); 50 | }); 51 | }); 52 | 53 | /*------------------ 54 | Navigation 55 | --------------------*/ 56 | $(".mobile-menu").slicknav({ 57 | prependTo: '#mobile-menu-wrap', 58 | allowParentLinks: true 59 | }); 60 | 61 | /*------------------ 62 | Accordin Active 63 | --------------------*/ 64 | $('.collapse').on('shown.bs.collapse', function () { 65 | $(this).prev().addClass('active'); 66 | }); 67 | 68 | $('.collapse').on('hidden.bs.collapse', function () { 69 | $(this).prev().removeClass('active'); 70 | }); 71 | 72 | //Canvas Menu 73 | $(".canvas__open").on('click', function () { 74 | $(".offcanvas-menu-wrapper").addClass("active"); 75 | $(".offcanvas-menu-overlay").addClass("active"); 76 | }); 77 | 78 | $(".offcanvas-menu-overlay").on('click', function () { 79 | $(".offcanvas-menu-wrapper").removeClass("active"); 80 | $(".offcanvas-menu-overlay").removeClass("active"); 81 | }); 82 | 83 | /*----------------------- 84 | Hero Slider 85 | ------------------------*/ 86 | $(".hero__slider").owlCarousel({ 87 | loop: true, 88 | margin: 0, 89 | items: 1, 90 | dots: false, 91 | nav: true, 92 | navText: ["", ""], 93 | animateOut: 'fadeOut', 94 | animateIn: 'fadeIn', 95 | smartSpeed: 1200, 96 | autoHeight: false, 97 | autoplay: false 98 | }); 99 | 100 | /*-------------------------- 101 | Select 102 | ----------------------------*/ 103 | $("select").niceSelect(); 104 | 105 | /*------------------- 106 | Radio Btn 107 | --------------------- */ 108 | $(".product__color__select label, .shop__sidebar__size label, .product__details__option__size label").on('click', function () { 109 | $(".product__color__select label, .shop__sidebar__size label, .product__details__option__size label").removeClass('active'); 110 | $(this).addClass('active'); 111 | }); 112 | 113 | /*------------------- 114 | Scroll 115 | --------------------- */ 116 | $(".nice-scroll").niceScroll({ 117 | cursorcolor: "#0d0d0d", 118 | cursorwidth: "5px", 119 | background: "#e5e5e5", 120 | cursorborder: "", 121 | autohidemode: true, 122 | horizrailenabled: false 123 | }); 124 | 125 | /*------------------ 126 | CountDown 127 | --------------------*/ 128 | // For demo preview start 129 | var today = new Date(); 130 | var dd = String(today.getDate()).padStart(2, '0'); 131 | var mm = String(today.getMonth() + 1).padStart(2, '0'); //January is 0! 132 | var yyyy = today.getFullYear(); 133 | 134 | if(mm == 12) { 135 | mm = '01'; 136 | yyyy = yyyy + 1; 137 | } else { 138 | mm = parseInt(mm) + 1; 139 | mm = String(mm).padStart(2, '0'); 140 | } 141 | var timerdate = mm + '/' + dd + '/' + yyyy; 142 | // For demo preview end 143 | 144 | 145 | // Uncomment below and use your date // 146 | 147 | /* var timerdate = "2020/12/30" */ 148 | 149 | $("#countdown").countdown(timerdate, function (event) { 150 | $(this).html(event.strftime("
    %D

    Days

    " + "
    %H

    Hours

    " + "
    %M

    Minutes

    " + "
    %S

    Seconds

    ")); 151 | }); 152 | 153 | /*------------------ 154 | Magnific 155 | --------------------*/ 156 | $('.video-popup').magnificPopup({ 157 | type: 'iframe' 158 | }); 159 | 160 | /*------------------- 161 | Quantity change 162 | --------------------- */ 163 | var proQty = $('.pro-qty'); 164 | proQty.prepend(''); 165 | proQty.append(''); 166 | proQty.on('click', '.qtybtn', function () { 167 | var $button = $(this); 168 | var oldValue = $button.parent().find('input').val(); 169 | if ($button.hasClass('inc')) { 170 | var newVal = parseFloat(oldValue) + 1; 171 | } else { 172 | // Don't allow decrementing below zero 173 | if (oldValue > 0) { 174 | var newVal = parseFloat(oldValue) - 1; 175 | } else { 176 | newVal = 0; 177 | } 178 | } 179 | $button.parent().find('input').val(newVal); 180 | }); 181 | 182 | var proQty = $('.pro-qty-2'); 183 | proQty.prepend(''); 184 | proQty.append(''); 185 | proQty.on('click', '.qtybtn', function () { 186 | var $button = $(this); 187 | var oldValue = $button.parent().find('input').val(); 188 | if ($button.hasClass('inc')) { 189 | var newVal = parseFloat(oldValue) + 1; 190 | } else { 191 | // Don't allow decrementing below zero 192 | if (oldValue > 0) { 193 | var newVal = parseFloat(oldValue) - 1; 194 | } else { 195 | newVal = 0; 196 | } 197 | } 198 | $button.parent().find('input').val(newVal); 199 | }); 200 | 201 | /*------------------ 202 | Achieve Counter 203 | --------------------*/ 204 | $('.cn_num').each(function () { 205 | $(this).prop('Counter', 0).animate({ 206 | Counter: $(this).text() 207 | }, { 208 | duration: 4000, 209 | easing: 'swing', 210 | step: function (now) { 211 | $(this).text(Math.ceil(now)); 212 | } 213 | }); 214 | }); 215 | 216 | })(jQuery); -------------------------------------------------------------------------------- /admin/customers.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Customer Page 10 | 11 | 12 | 17 | 18 | 19 |
    20 |
    21 | 22 | 23 | 24 |
    25 |
    26 |

    Customers

    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 | 0) { 57 | while($row = mysqli_fetch_array($result)) { 58 | $id=$row['id'];?> 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 77 | 78 |
    idNameMovieTheaterShow_timeSeatTotal SeatPricePayment DateBooking DateCustemer
    79 |
    80 |