Prettify the Customer pages
[cs356-p2-videostore.git] / app / views / layouts / purchase.rhtml
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
4 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5 <head>
6   <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
7   <title>Purchase: <%= controller.action_name %></title>
8   <%= stylesheet_link_tag 'scaffold' %>
9   <%= stylesheet_link_tag 'videostore', :media => "all" %>
10 </head>
11 <body>
12
13 <div id="header">
14   <h1 id="header">PripPropPrix (formerly ACME Video)</h1>
15 </div>
16
17 <p style="color: green"><%= flash[:notice] %></p>
18 <p style="color: red"><%= flash[:error] %></p>
19
20 <div id="main">
21   <%= yield :layout %>
22 </div>
23
24 </body>
25 </html>