github.com/pf-qiu/concourse/v6@v6.7.3-0.20201207032516-1f455d73275f/web/elm/src/Views/NotAuthorized.elm (about) 1 module Views.NotAuthorized exposing (view) 2 3 import Assets 4 import Html exposing (Html) 5 import Html.Attributes exposing (class, src) 6 7 8 view : Html msg 9 view = 10 Html.div [ class "not-authorized" ] 11 [ Html.img 12 [ src <| Assets.toString Assets.PassportOfficerIcon ] 13 [] 14 , Html.div 15 [ class "title" ] 16 [ Html.text "401 Unauthorized" ] 17 , Html.div 18 [ class "reason" ] 19 [ Html.text "You are not authorized to view" ] 20 , Html.div 21 [ class "reason" ] 22 [ Html.text "the details of this pipeline" ] 23 ]