miércoles, 20 de junio de 2018

Fecha Inicial : .20/06/2018
Fecha Final :  .20/06/2018
Hora Inicio: .2:53AM
Hora Final: .4:42AM
Horas invertidas(Minutos):  109
Colaboradores: Óscar  Cortés
Tipo de labor: Individual



Actividad
Crear paginas para la parte lógica del proyecto.

Imágenes
Panel configuración



LogIn


Código
Panel de configuración - Interfaz: version 1.0
<!DOCTYPE html>

<html lang="en">
<head>
<meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">  
    <title>Configuracion de entidades</title>
        <link rel="shortcut icon" type="image/x-icon" href="images/Ico.ico" />
        <meta name="description" content="">
        <meta name="author" content="templatemo">
        <!-- 
        Visual Admin Template
        http://www.templatemo.com/preview/templatemo_455_visual_admin
        -->
    <link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,400italic,700' rel='stylesheet' type='text/css'>
    <link href="css/font-awesome.min.css" rel="stylesheet">
    <link href="css/bootstrap.min.css" rel="stylesheet">
    <link href="css/templatemo-style.css" rel="stylesheet">
    
    <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
    <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
    <!--[if lt IE 9]>
      <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
      <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
    <![endif]-->
</head>
<body class="light-gray-bg">
    <form id="form1" runat="server">
        <div>

         <nav class="navbar navbar-inverse">
            <div class="container-fluid">
                <div class="navbar-header">
                  <a class="navbar-brand" href="PanelAdministrador.aspx">Bolsa</a>
                </div>

                 <ul class="nav navbar-nav">
                  <li class="active"><a href="Configuracion.aspx">Configuracion</a></li>
                </ul>

                <ul class="nav navbar-nav">
                  <li class="active"><a href="LogIn.aspx">Salir</a></li>
                </ul>

              </div>
         </nav>

        <div class="container">
            
            <h2>Configuración del sistema</h2>
            <br />
            
            <asp:Panel runat="server">
                 <asp:DropDownList runat="server" ID ="DL_Entidad" class="btn btn-primary dropdown-toggle" ItemType ="">
                     <asp:ListItem Enabled="true" Text="Seleccione la entidad" Value="-1"></asp:ListItem>
                     <asp:ListItem Enabled="true" Text="Emisor" Value="0"></asp:ListItem>
                     <asp:ListItem Enabled="true" Text="Cliente" Value="1"></asp:ListItem>
                     <asp:ListItem Enabled="true" Text="Agente" Value="2"></asp:ListItem>
                 </asp:DropDownList>

                <asp:DropDownList runat="server" ID ="DL_Operacion" class="btn btn-primary dropdown-toggle" ItemType ="">
                    <asp:ListItem Enabled="true" Text="Seleccione operación" Value="-1"></asp:ListItem>
                    <asp:ListItem Enabled="true" Text="Agregar" Value="0"></asp:ListItem>
                    <asp:ListItem Enabled="true" Text="Modificar" Value="1"></asp:ListItem>
                    <asp:ListItem Enabled="true" Text="Eliminar" Value="2"></asp:ListItem>
                </asp:DropDownList>


                <asp:Button runat="server" Text ="Realizar" class="btn btn-primary"/>
            </asp:Panel>

            <br />

            <asp:Panel runat="server" ID="PL_IDEntidad">
                <asp:Label runat="server" Text="ID de la entidad: "> </asp:Label>
                <asp:TextBox ID="TB_IDEntidad"  runat="server" ></asp:TextBox>
                <asp:Button runat="server" Text="Cargar" class="btn btn-primary"/>
                <br />
                <br />
            </asp:Panel>


            <asp:MultiView runat="server" ActiveViewIndex="2">
               
                <asp:View runat="server">  <!--  ID="View_Emisor"-->

                    <table style="width:70%;">
                        <tr>
                            <td class="auto-style1">ID:</td>
                            <td class="auto-style2">
                                <asp:Label ID="LB_ID"  runat="server" class="form-control"></asp:Label>
                            </td>
                        </tr>
                
                        <tr>
                            <td><br></td>
                            <td><br></td>          
                        </tr>

                        <tr>
                            <td class="auto-style1">Nombre de la municipalidad:</td>
                            <td class="auto-style2">
                                <asp:TextBox ID="TP_Nombre"  runat="server" class="form-control"></asp:TextBox>
                            </td>
                        </tr>


                        <tr>
                            <td class="auto-style1">Dia para emitir recibos:</td>
                            <td class="auto-style2">
                                <asp:TextBox ID="TB_diaEmite" runat="server" class="form-control" placeholder="Dia en que se generan los recibos" onkeydown = "return (!(event.keyCode>=65) && event.keyCode!=32);"></asp:TextBox>
                            </td>
                        </tr>

                    </table>
                </asp:View>

                <asp:View runat="server">  <!--  ID="View_Cliente"-->
                    <table style="width:70%;">
                        <tr>
                            <td class="auto-style1">ID:</td>
                            <td class="auto-style2">
                                <asp:Label ID="Label1"  runat="server" class="form-control"></asp:Label>
                            </td>
                        </tr>
                
                        <tr>
                            <td><br></td>
                            <td><br></td>          
                        </tr>

                        <tr>
                            <td class="auto-style1">Nombre de la municipalidad:</td>
                            <td class="auto-style2">
                                <asp:TextBox ID="TextBox1"  runat="server" class="form-control"></asp:TextBox>
                            </td>
                        </tr>


                        <tr>
                            <td class="auto-style1">Dia para emitir recibos:</td>
                            <td class="auto-style2">
                                <asp:TextBox ID="TextBox2" runat="server" class="form-control" placeholder="Dia en que se generan los recibos" onkeydown = "return (!(event.keyCode>=65) && event.keyCode!=32);"></asp:TextBox>
                            </td>
                        </tr>

                    </table>
                </asp:View>

                <asp:View runat="server">  <!--  ID="View_Agente"-->

                    <table style="width:70%;">

                        <tr>
                            <td class="auto-style1">ID:</td>
                            <td class="auto-style2">
                                <asp:Label ID="LB_IDAgente"  runat="server" class="form-control"></asp:Label>
                            </td>
                        </tr>
                
                        <tr>
                            <td><br></td>
                            <td><br></td>          
                        </tr>

                        <tr>
                            <td class="auto-style1">Nombre:</td>
                            <td class="auto-style2">
                                <asp:TextBox ID="TB_NombreAgente"  runat="server" class="form-control"></asp:TextBox>
                            </td>
                        </tr>


                        <tr>
                            <td class="auto-style1">Saldo:</td>
                            <td class="auto-style2">
                                <asp:TextBox ID="TB_Saldo" runat="server" class="form-control" onkeydown = "return (!(event.keyCode>=65) && event.keyCode!=32);"></asp:TextBox>
                            </td>
                        </tr>

                    </table>

                </asp:View>
            </asp:MultiView>

            
            <br />
            <br />
            

            <asp:Button ID="Button1" runat="server" Text="Cancelar"  
                            class="templatemo-blue-button width-80"/>
          


                        <asp:Button ID="Btn_IniciarSesion" runat="server" Text="Guardar"  onClick="GuardarDatosMunicipalidad"
                            class="templatemo-blue-button width-80"/>
           
    

        </div>

        </div>
    </form>
</body>

</html>




Login - Interfaz: versión 1.0

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">  
    <title>Login</title>
        <link rel="shortcut icon" type="image/x-icon" href="images/Ico.ico" />
        <meta name="description" content="">
        <meta name="author" content="templatemo">
        <!-- 
        Visual Admin Template
        http://www.templatemo.com/preview/templatemo_455_visual_admin
        -->
    <link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,400italic,700' rel='stylesheet' type='text/css'>
    <link href="css/font-awesome.min.css" rel="stylesheet">
    <link href="css/bootstrap.min.css" rel="stylesheet">
    <link href="css/templatemo-style.css" rel="stylesheet">
    
    <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
    <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
    <!--[if lt IE 9]>
      <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
      <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
    <![endif]-->
</head>
<body class="light-gray-bg">
    <div class="templatemo-content-widget templatemo-login-widget white-bg">
        
        <header class="text-center">
          <div class="square"></div>
          <h1>Bolsa de acciones</h1>
      </header>

        <form id="form1" runat="server">
            
        <div>
            <table style="width:100%;">
                <tr>
                    <td class="auto-style1">Nombre de usuario</td>
                    <td class="auto-style2">
                        <asp:TextBox ID="TB_User" runat="server" class="form-control" placeholder="Usuario.."></asp:TextBox>
                    </td>
                </tr>

  
             
                <tr>
                    <td class="auto-style1">Contraseña:</td>
                    <td class="auto-style2">
                        <asp:TextBox ID="TB_Password" runat="server" class="form-control" placeholder="Contraseña.."></asp:TextBox>
                    </td>
                </tr>

                <tr>
                    <td><br></td>
                    <td><br></td>          
                </tr>

                <tr>
                    <td class="auto-style1">&nbsp;</td>
                    <td class="auto-style2">
                        <asp:Button ID="Btn_IniciarSesion" runat="server" Text="Iniciar sesión"  
                            class="templatemo-blue-button width-100" OnClick="Btn_IniciarSesion_Click" />
                    </td> 
                </tr>

                <tr>
                    <td><br></td>
                    <td><br></td>          
                </tr>
                
                <tr>
                    <td class="auto-style1">&nbsp;</td>
                    <td class="auto-style2"> 
                        <asp:Label runat="server" ID="LB_Notificador" Text =""> </asp:Label>
                    </td>
                </tr>
                
            </table>
    
        </div>
        </form>
    </div>

        
</body>
</html>



Música

Sara Bareilles - Goodbye Yellow Brick Road (Live from Atlanta)

https://youtu.be/Ozd2ja7mAgM

No hay comentarios.:

Publicar un comentario