Skip to content

Commit

Permalink
add default form title
Browse files Browse the repository at this point in the history
  • Loading branch information
yangfuhai committed Nov 6, 2022
1 parent ef5702d commit 1b6e5f5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<link rel="stylesheet" href="#(CPATH)/static/components/toastr/toastr.min.css">
<link href="#(CPATH)/static/components/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link rel="stylesheet" href="#(CPATH)/static/front/jpressfront.css">
<title>#(form.title ??)</title>
<title>#(form.title ?? 'JPress 表单')</title>
</head>
<body style="background:#efefef url('#(form.bgImage)') center center no-repeat;background-size:cover;">
<div class="centerContent">
Expand All @@ -15,7 +15,7 @@
#end
<div class="bg-white pd-30">
<div class="jpress-form-header">
<h5 class="jpress-form-title">#(form.title ??) </h5>
<h5 class="jpress-form-title">#(form.title ?? 'JPress 表单') </h5>
<p class="jpress-form-desc"> #(form.summary ??)</p>
</div>
<div class="form-content pt-30 pb-30">
Expand Down

0 comments on commit 1b6e5f5

Please sign in to comment.