Advertisement
Guest User

show_users.jsp

a guest
Oct 5th, 2017
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.06 KB | None | 0 0
  1.  
  2. <code lang="html">
  3. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  4. <%@ page contentType="text/html;charset=UTF-8" language="java" %>
  5.  
  6. <html>
  7.  
  8. <head>
  9.  
  10.     <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
  11.     <link rel="stylesheet" href = "<c:url value = "/css/materialize.min.css"/>" media="screen,projection"/>
  12.     <link rel="stylesheet" href = "<c:url value = "/css/show_users_style.css"/>" media="screen,projection"/>
  13.     <meta http-equiv='Content-Type' content='text/html; charset=UTF-8' />
  14.     <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  15.     <title>Список всех пользователей</title>
  16.  
  17. </head>
  18.  
  19. <body>
  20.  
  21.     <nav class = "nav-color">
  22.  
  23.        <div class = "nav-wrapper">
  24.  
  25.            <a href = "#" class = "brand-logo left">*здесь должен быть логотип*</a>
  26.  
  27.            <ul id = "nav-mobile" class = "right hide-on-med-and-down">
  28.  
  29.                <li><a href = "JizzyShop(Informatics)/index">Главная страница</a></li>
  30.  
  31.            </ul>
  32.  
  33.        </div>
  34.  
  35.     </nav>
  36.  
  37.     <div class = "list-users">
  38.  
  39.         <div class = "row">
  40.  
  41.             <div class = "col s12 m4 l4">
  42.  
  43.                 <h6 class = "black-text text-lighten-3 center-align">Страна</h6>
  44.  
  45.             </div>
  46.  
  47.             <div class = "col s12 m4 l4">
  48.  
  49.                 <h6 class = "black-text text-lighten-3 center-align">Подписка на уведомления</h6>
  50.  
  51.             </div>
  52.  
  53.         </div>
  54.  
  55.         <c:forEach items = "${profiles}" var = "profile">
  56.  
  57.             <div class = "row">
  58.  
  59.                 <div class = "col s12 m4 l4">
  60.  
  61.                     <h6 class = "black-text text-lighten-3 center-align">${profile.getCountry()}</h6>
  62.  
  63.                 </div>
  64.  
  65.                 <div class = "col s12 m4 l4">
  66.  
  67.                     <h6 class = "black-text text-lighten-3 center-align">${profile.getSubscription()}</h6>
  68.  
  69.                 </div>
  70.  
  71.             </div>
  72.  
  73.         </c:forEach>
  74.  
  75.     </div>
  76.  
  77. </body>
  78.  
  79. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement