The only way I've found, so far, is to modify the css class requiredField
by adding a style
element in base.html immediately below the cdn link to Bootstrap, as in :
<style>
.requiredField {
font-weight:bold;
text-decoration:underline;
}
</style>
If anyone knows any better way I'd be grateul if they could shar their knowledge.